/*
Theme Name: Manhattan Ventures
Theme URI: https://manhattanventures.com
Author: Custom Development
Author URI: https://example.com
Description: A premium real estate investment firm WordPress theme with elegant navy blue color scheme.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: manhattan-ventures
Tags: real estate, investment, business, corporate, elegant
*/

/* ============================================
   CSS Variables
   ============================================ */

@media (max-width: 768px) {
    img.site-logo {
        width: 100px!important;
    }
}

section.section.blogs-section {
    display: none;
}
:root {
    --primary: #00326E;
    --secondary: #003C82;
    --accent: #0066CC;
    --accent-light: #0080FF;
    --accent-dark: #00285A;
    --text-dark: #00285A;
    --text-light: #003264;
    --text-muted: #4a6d94;
    --bg-light: #f0f4f8;
    --white: #ffffff;
    --gradient-dark: linear-gradient(135deg, #00326E 0%, #003C82 50%, #00326E 100%);
    --gradient-accent: linear-gradient(135deg, #0066CC 0%, #0080FF 50%, #0066CC 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-light);
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
}

/* Modern Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

.cursor.hover {
    width: 50px;
    height: 50px;
    border-color: var(--accent);
    background: rgba(0, 60, 130, 0.1);
    transform: translate(-50%, -50%) scale(1.5);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    letter-spacing: -0.01em;
}

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

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

/* ============================================
   WordPress Core Classes
   ============================================ */
.alignwide {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    width: 100%;
    max-width: none;
}

.wp-block-image {
    margin-bottom: 2rem;
}

.wp-block-button__link {
    background: var(--gradient-accent);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.4s ease;
}

.wp-block-button__link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 60, 130, 0.3);
}

/* ============================================
   Navigation
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(240, 244, 248, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 0.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(61, 90, 128, 0.1);
}

.site-header.scrolled {
    padding: 0.35rem 5%;
    background: rgba(240, 244, 248, 0.98);
    box-shadow: 0 10px 40px rgba(0, 50, 110, 0.15);
    border-bottom-color: rgba(0, 60, 130, 0.2);
}

/* Logo size constraint */
.site-logo-link {
    display: inline-flex;
    align-items: center;
}

img.site-logo {
    max-height:  70px;
    width: auto;
    transition: all 0.3s ease;
}

.site-header.scrolled img.site-logo {
    max-height: 70px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.site-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 2px;
    position: relative;
    transition: all 0.3s ease;
}

.site-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.4s ease;
}

.site-title:hover::after {
    width: 100%;
}

.site-title span {
    color: var(--accent);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.main-navigation {
    position: relative;
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-navigation.active .nav-overlay {
    display: block;
    opacity: 1;
}

.nav-menu {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.main-navigation a {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.75rem 1.25rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.main-navigation a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.main-navigation a:hover::before,
.main-navigation a.current-menu-item::before {
    width: 60%;
}

.main-navigation a:hover {
    color: var(--accent);
    background: rgba(0, 60, 130, 0.1);
}

.main-navigation a.current-menu-item {
    color: var(--accent);
}

/* Dropdown menu */
.nav-menu ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 0.75rem 0;
    box-shadow: 0 20px 50px rgba(61, 90, 128, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

/* Show dropdown on click (using class) */
.nav-menu li.menu-item-has-children > ul.show,
.nav-menu li.page_item_has_children > ul.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Show dropdown on hover (desktop) */
@media (min-width: 1025px) {
    .nav-menu li:hover > ul {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .submenu-toggle {
        display: none !important;
    }
    
    /* Down arrow for dropdown menu items on desktop */
    .nav-menu li.menu-item-has-children > a::after,
    .nav-menu li.page_item_has_children > a::after {
        content: '';
        display: inline-block;
        width: 0;
        height: 0;
        margin-left: 8px;
        vertical-align: middle;
        border-top: 5px solid;
        border-right: 4px solid transparent;
        border-left: 4px solid transparent;
        opacity: 0.7;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
    
    .nav-menu li.menu-item-has-children > a:hover::after,
    .nav-menu li.page_item_has_children > a:hover::after {
        opacity: 1;
        transform: translateY(2px);
    }
}

/* Mobile menu styles */
@media (max-width: 1024px) {
    /* Mobile dropdown - Simple full width dropdown */
    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        background: #ffffff;
        flex-direction: column;
        padding: 0;
        transition: max-height 0.4s ease, opacity 0.3s ease;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        z-index: 9999;
    }
    
    .main-navigation.active {
        max-height: 70vh;
        overflow-y: auto;
    }
    
    .nav-overlay {
        display: none !important;
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: stretch;
        padding: 0.5rem 0;
    }
    
    .nav-menu > li {
        border-bottom: 1px solid #e5e7eb;
    }
    
    .nav-menu > li:last-child {
        border-bottom: none;
    }
    
    .nav-menu > li > a {
        padding: 1rem 1.5rem;
        color: #00326E !important;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.25s ease;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: transparent !important;
    }
    
    .nav-menu > li > a:hover,
    .nav-menu > li > a:focus {
        color: #0066CC !important;
        background: #f3f4f6 !important;
    }
    
    /* Mobile submenu styles */
    .nav-menu ul {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f9fafb;
        border-radius: 0;
        padding: 0;
        display: none;
    }
    
    .nav-menu ul.show {
        display: block;
    }
    
    .nav-menu ul a {
        padding: 0.85rem 2rem;
        font-size: 0.9rem;
        color: #00326E !important;
        font-weight: 500;
        transition: all 0.25s ease;
    }
    
    .nav-menu ul a:hover {
        background: #e5e7eb !important;
        color: #0066CC !important;
    }
    
    /* Dropdown toggle indicator - dedicated button */
    .nav-menu li.menu-item-has-children,
    .nav-menu li.page_item_has_children {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
    }
    
    .nav-menu li.menu-item-has-children > a,
    .nav-menu li.page_item_has_children > a {
        flex: 1;
        min-width: 0;
        padding-right: 1rem !important;
    }
    
    .submenu-toggle {
        flex-shrink: 0;
        width: 54px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 102, 204, 0.08);
        border: none;
        border-left: 1px solid rgba(0, 102, 204, 0.15);
        border-radius: 0;
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0;
    }
    
    .submenu-toggle .toggle-icon {
        font-size: 1.5rem;
        font-weight: 400;
        color: #0066CC;
        line-height: 1;
    }
    
    .nav-menu li.menu-item-has-children.submenu-open > .submenu-toggle,
    .nav-menu li.page_item_has_children.submenu-open > .submenu-toggle {
        background: #0066CC;
    }
    
    .nav-menu li.menu-item-has-children.submenu-open > .submenu-toggle .toggle-icon,
    .nav-menu li.page_item_has_children.submenu-open > .submenu-toggle .toggle-icon {
        color: #ffffff;
    }
    
    .nav-menu li.menu-item-has-children > .sub-menu,
    .nav-menu li.page_item_has_children > .sub-menu {
        width: 100%;
    }
    
    /* Header actions spacing on mobile */
    .header-actions {
        gap: 0.5rem;
    }
    
    .header-actions .get-quote-btn {
        padding: 0.4rem 0.7rem;
        font-size: 0.75rem;
    }
    
    /* Ensure hamburger is visible */
    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 44px;
        height: 44px;
        background: #00326E !important;
        border-radius: 8px;
        border: none !important;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .menu-toggle .hamburger-line {
        background: #ffffff !important;
        width: 22px;
        height: 2px;
        margin: 3px 0;
    }
    
    .menu-toggle:hover {
        background: #0066CC !important;
    }
    
    .menu-toggle.active {
        background: #0066CC !important;
    }
}

.nav-menu ul a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--primary);
}

.nav-menu ul a::before {
    display: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

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

.menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.hamburger-line {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--primary);
    margin: 6px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Make hamburger visible on mobile - High visibility version */
@media (max-width: 1024px) {
    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 44px !important;
        height: 44px !important;
        background: #00326E !important;
        border-radius: 8px !important;
        border: none !important;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 10001;
    }
    
    .menu-toggle:hover {
        background: #004a99 !important;
    }
    
    .menu-toggle.active {
        background: #0066CC !important;
    }
    
    .hamburger-line {
        background: #ffffff !important;
        width: 22px !important;
        height: 2px !important;
        margin: 3px 0 !important;
    }
    
    .menu-toggle.active .hamburger-line {
        background: #ffffff !important;
    }
}

.menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 8rem 5% 4rem;
    overflow: hidden;
    background: linear-gradient(135deg, #001233 0%, #002855 50%, #001a3a 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 80%, rgba(0, 102, 204, 0.2) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(0, 60, 130, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 50%, rgba(0, 102, 204, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

.hero-bg.loading {
    opacity: 0;
}

.hero-bg.loaded {
    opacity: 1;
    transition: opacity 0.5s ease;
}

.hero-bg-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 18, 50, 0.7) 0%, rgba(0, 30, 70, 0.6) 50%, rgba(0, 20, 55, 0.7) 100%);
    z-index: 1;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 140, 255, 0.2) 0%, rgba(0, 80, 180, 0.1) 40%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
    z-index: 2;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

/* Hero Container - Two Column Layout */
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    text-align: left;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge-wrapper {
    margin-bottom: 1rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 120, 220, 0.3) 0%, rgba(0, 100, 200, 0.2) 100%);
    border: 2px solid rgba(0, 160, 255, 0.6);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 25px rgba(0, 120, 220, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.badge-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.badge-icon-wrapper svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Hero Image - Right Column */
.hero-image {
    flex: 1;
    max-width: 550px;
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 1s ease forwards;
    animation-delay: 0.5s;
}

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

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4), 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 50, 120, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

/* Responsive - Two column to single column */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-image {
        max-width: 100%;
        width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 7rem 5% 3rem;
    }
    
    .hero-container {
        gap: 2rem;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
    }
    
    .hero-image-wrapper {
        border-radius: 15px;
    }
}

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

.badge-icon {
    width: 18px;
    height: 18px;
    fill: #ffffff;
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(1.5rem, 4vw, 2.75rem);
    color: #ffffff;
    margin-bottom: 1.25rem;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}

.hero-title .title-accent {
    color: #00B4FF;
    background: linear-gradient(135deg, #00B4FF 0%, #00E5FF 50%, #00C6FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 700px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.3px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    border: none;
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
}

.btn-large {
    padding: 1.3rem 3rem;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-accent);
    color: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 60, 130, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 60, 130, 0.35);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(0, 60, 130, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
}

.btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.btn:hover svg {
    transform: translateX(4px);
}

/* ============================================
   Section Styles
   ============================================ */
.section {
    padding: 8rem 5%;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.section-tag {
    color: var(--accent);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    display: block;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-tag::before,
.section-tag::after {
    content: '—';
    margin: 0 0.75rem;
    opacity: 0.4;
}

.section-title {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

/* ============================================
   About Section - Dark Theme
   ============================================ */
.about-dark {
    background: var(--bg-light);
    padding: 8rem 5%;
    position: relative;
    overflow: hidden;
}

.about-dark::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 60, 130, 0.08) 0%, transparent 70%);
}

.about-dark::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 50, 110, 0.05) 0%, transparent 70%);
}

.about-dark-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-dark-header {
    text-align: center;
    margin-bottom: 5rem;
}

.about-dark-header .section-tag {
    color: var(--accent);
}

.about-dark-header h2 {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-dark-header h2 span {
    color: var(--accent);
}

.about-dark-intro {
    font-size: 1.3rem;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
    font-weight: 300;
}

.about-dark-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.about-dark-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 252, 255, 0.95) 100%);
    border: 1px solid rgba(61, 90, 128, 0.15);
    border-radius: 20px;
    padding: 3rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(61, 90, 128, 0.1);
    position: relative;
    overflow: hidden;
}

.about-dark-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 50%, var(--accent) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-dark-card:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f8fcff 100%);
    border-color: rgba(0, 102, 204, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.18);
}

.about-dark-card:hover::before {
    opacity: 1;
}

.about-dark-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-dark-card h3::before {
    content: '';
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: 2px;
}

.about-dark-card p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1rem;
}

.about-dark-stats {
    padding: 0;
    background: transparent;
    border: none;
}

.about-dark-cta {
    text-align: center;
    margin-top: 4rem;
}

.about-dark-cta .btn-secondary {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}

.about-dark-cta .btn-secondary:hover {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.about-dark-cta .btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.about-dark-cta .btn:hover svg {
    transform: translateX(5px);
}

/* Firm Overview Section */
.firm-overview {
    margin: 3rem 0;
    padding: 2.5rem;
    background: rgba(0, 60, 130, 0.08);
    border-radius: 16px;
    border-left: 4px solid var(--accent);
}

.firm-overview h3 {
    color: var(--primary);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.firm-overview-text {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1rem;
}

.firm-overview-text:last-of-type {
    margin-bottom: 0;
}

/* AUM Section */
.aum-section {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(0, 50, 110, 0.08);
    border-radius: 20px;
    border: 2px solid rgba(0, 60, 130, 0.2);
}

.aum-title {
    color: var(--primary);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.aum-stat {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(240, 248, 255, 0.5) 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.aum-stat:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 250, 255, 0.85) 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.15);
    border-color: rgba(0, 102, 204, 0.25);
}

.aum-stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(0, 60, 130, 0.2) 0%, rgba(0, 102, 204, 0.3) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.aum-stat:hover .aum-stat-icon {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    transform: scale(1.1);
}

.aum-stat-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--accent);
    transition: fill 0.3s ease;
}

.aum-stat:hover .aum-stat-icon svg {
    fill: var(--white);
}

.aum-stat-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.aum-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   Focus Section
   ============================================ */
.focus {
    background: var(--white);
    padding: 8rem 5%;
    position: relative;
}

.focus-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20vw;
    font-weight: 900;
    color: rgba(61, 90, 128, 0.03);
    pointer-events: none;
    white-space: nowrap;
    font-family: 'Cormorant Garamond', serif;
}

.focus-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.focus-card {
    background: var(--bg-light);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(61, 90, 128, 0.08);
    border: 1px solid rgba(61, 90, 128, 0.06);
}

.focus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(61, 90, 128, 0.15);
}

.focus-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.focus-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 50, 110, 0.05) 0%, rgba(0, 102, 204, 0.1) 100%);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.focus-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 50, 110, 0.3) 0%, rgba(0, 102, 204, 0.5) 50%, rgba(0, 180, 255, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.focus-card:hover .focus-image-wrapper::after {
    opacity: 1;
}

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

.focus-card:hover .focus-image-wrapper img {
    transform: scale(1.08);
}

.focus-number {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.4);
    transition: transform 0.3s ease;
}

.focus-card:hover .focus-number {
    transform: scale(1.1);
}

.focus-content {
    padding: 2rem;
}

.focus-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.focus-card:hover .focus-content h3 {
    color: var(--accent);
}

.focus-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.deal-size {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(0, 60, 130, 0.1) 0%, rgba(0, 102, 204, 0.15) 100%);
    border-radius: 16px;
    border: 2px solid rgba(0, 102, 204, 0.2);
    position: relative;
    overflow: hidden;
}

.deal-size::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 50%, var(--accent) 100%);
}

.deal-size h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.deal-size p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
}

.deal-size .highlight {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.25rem;
}

/* Deal Size Card */
.deal-size-container {
    margin-top: 3rem;
}

.deal-size-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    box-shadow: 0 15px 50px rgba(61, 90, 128, 0.12);
    position: relative;
    overflow: hidden;
}

.deal-size-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-accent);
}

.deal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 60, 130, 0.15) 0%, rgba(0, 50, 110, 0.05) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.deal-size-card:hover .deal-icon {
    background: var(--gradient-accent);
    transform: scale(1.1) rotate(5deg);
}

.deal-icon svg {
    width: 36px;
    height: 36px;
    color: var(--accent);
    transition: all 0.4s ease;
}

.deal-size-card:hover .deal-icon svg {
    color: var(--white);
}

.deal-content {
    flex: 1;
}

.deal-label {
    display: inline-block;
    background: rgba(0, 60, 130, 0.15);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.deal-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.deal-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

.deal-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-shrink: 0;
}

.deal-stat {
    text-align: center;
    padding: 1rem 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.deal-size-card:hover .deal-stat {
    background: rgba(0, 60, 130, 0.1);
}

.stat-value {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Header Divider */
.header-divider {
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-section {
    background: var(--bg-light);
    padding: 8rem 5%;
}

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

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

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 248, 255, 0.95) 100%);
    border: 1px solid rgba(61, 90, 128, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(61, 90, 128, 0.08);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 50%, var(--accent) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 102, 204, 0.15);
    border-color: rgba(0, 102, 204, 0.3);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-quote {
    margin-bottom: 1.5rem;
}

.testimonial-quote svg {
    width: 40px;
    height: 40px;
    fill: var(--accent);
    opacity: 0.5;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
}

.author-title {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, #00326E 0%, #004a99 50%, #00326E 100%);
    padding: 6rem 5%;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 128, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 200, 255, 0.1) 0%, transparent 40%);
}

.cta-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Blogs Section
   ============================================ */
.blogs-section {
    background: var(--white);
    padding: 8rem 5%;
}

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

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

.blog-card {
    background: linear-gradient(135deg, #f0f8ff 0%, #e8f4fc 100%);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(61, 90, 128, 0.08);
    border: 1px solid rgba(61, 90, 128, 0.06);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 102, 204, 0.18);
}

.blog-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 50, 110, 0.08) 0%, rgba(0, 102, 204, 0.12) 100%);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.blog-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 50, 110, 0.3) 0%, rgba(0, 150, 255, 0.45) 100%);
    opacity: 0;
    z-index: 2;
    transition: opacity 0.4s ease;
}

.blog-card:hover .blog-image::after {
    opacity: 1;
}

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

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
}

.blog-date {
    color: var(--text-muted);
}

.blog-category a {
    color: var(--accent);
    font-weight: 600;
}

.blog-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-title a {
    color: var(--primary);
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--accent);
}

.blog-excerpt {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.blog-read-more:hover {
    gap: 0.75rem;
    color: var(--accent-dark);
}

.blog-read-more svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.blog-read-more:hover svg {
    transform: translateX(4px);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
    gap: 0.5rem;
}

.pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--bg-light);
    color: var(--primary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--accent);
    color: var(--white);
}

.pagination .page-numbers.dots {
    background: transparent;
}

.pagination .page-numbers.dots:hover {
    background: transparent;
    color: var(--primary);
}

.pagination .prev,
.pagination .next {
    width: auto;
    padding: 0 1.5rem;
}

/* No blogs message */
.no-blogs {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-light);
    border-radius: 16px;
}

.no-blogs p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 5% 2rem;
    color: #1a1a2e;
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
}

.footer-brand .site-title {
    display: inline-block;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.footer-brand .site-logo-link {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-brand .site-title-link {
    display: inline-block;
    margin-bottom: 1.5rem;
    text-decoration: none;
}

.footer-brand .site-title {
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: 700;
}

.footer-brand .site-logo {
    max-width: 200px;
    height: auto;
    display: block;
}

.footer-brand .brand-tagline {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-brand p {
    color: rgba(26, 26, 46, 0.7);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.footer-links h4 {
    color: #1a1a2e;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a {
    color: rgba(26, 26, 46, 0.75);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links ul li a svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.footer-links ul li a:hover {
    color: var(--accent);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.footer-social a {
    width: 48px;
    height: 48px;
    background: rgba(26, 26, 46, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: #1a1a2e;
}

.footer-links h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1a1a2e;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(26, 26, 46, 0.75);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 4rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(26, 26, 46, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(26, 26, 46, 0.5);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(26, 26, 46, 0.5);
    font-size: 0.9rem;
}

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

/* ============================================
   Responsive Styles
   ============================================ */
@media (max-width: 1024px) {
    .about-dark-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .aum-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .focus-grid,
    .testimonials-grid,
    .blogs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .focus-bg-text {
        font-size: 15vw;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 1rem 5%;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: static;
        top: auto;
        right: auto;
        width: 100%;
        max-width: none;
        height: auto;
        background: transparent;
        flex-direction: column;
        padding: 0;
        box-shadow: none;
    }
    
    .main-navigation.active .nav-menu {
        right: auto;
    }
    
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 36px;
        height: 36px;
        background: rgba(0, 102, 204, 0.08);
        border-radius: 8px;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .menu-toggle:hover {
        background: rgba(0, 102, 204, 0.15);
    }
    
    .menu-toggle.active {
        background: var(--accent);
    }
    
    .menu-toggle.active .hamburger-line {
        background: #ffffff;
    }
    
    .about-dark-grid {
        grid-template-columns: 1fr;
    }
    
    .aum-grid {
        grid-template-columns: 1fr;
    }
    
    .focus-grid,
    .testimonials-grid,
    .blogs-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .section {
        padding: 4rem 5%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .focus-bg-text {
        font-size: 20vw;
    }
    
    .testimonial-card,
    .blog-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 6rem 5% 3rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-tagline {
        font-size: 0.9rem;
    }
    
    .hero-badge {
        padding: 0.5rem 1rem;
        font-size: 0.6rem;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .about-dark {
        padding: 3rem 5%;
    }
    
    .about-dark-header h2 {
        font-size: 2rem;
    }
    
    .about-dark-card {
        padding: 1.5rem;
    }
    
    .focus {
        padding: 3rem 5%;
    }
    
    .focus-image-wrapper {
        height: 180px;
    }
    
    .testimonials-section,
    .blogs-section,
    .cta-section {
        padding: 3rem 5%;
    }
    
    .aum-stat {
        padding: 1.5rem;
    }
    
    .aum-stat-number {
        font-size: 1.5rem;
    }
    
    .deal-size {
        padding: 2rem;
    }
}

/* ============================================
   Page Hero
   ============================================ */
.page-hero {
    min-height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 5% 4rem;
    overflow: hidden;
    background: linear-gradient(135deg, #001233 0%, #002855 50%, #001a3a 100%);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 102, 204, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(0, 60, 130, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 50, 110, 0.7) 0%, rgba(0, 60, 130, 0.6) 50%, rgba(0, 50, 110, 0.65) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.page-hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
}

.page-hero-content p {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

/* ============================================
   Contact Page
   ============================================ */
.contact-section {
    background: var(--bg-light);
    padding: 6rem 5%;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(61, 90, 128, 0.1);
}

.contact-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(61, 90, 128, 0.1);
}

.contact-item:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 60, 130, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-weight: 600;
}

.contact-details a,
.contact-details p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-details a:hover {
    color: var(--accent);
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(61, 90, 128, 0.1);
}

.contact-form-wrapper h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

/* Contact Form 7 Styles */
.contact-form-wrapper .wpcf7 {
    max-width: 100%;
}

.contact-form-wrapper .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form-wrapper .wpcf7-form p {
    margin: 0;
}

.contact-form-wrapper .wpcf7-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-form-wrapper .wpcf7-form input[type="text"],
.contact-form-wrapper .wpcf7-form input[type="email"],
.contact-form-wrapper .wpcf7-form input[type="tel"],
.contact-form-wrapper .wpcf7-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(61, 90, 128, 0.15);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-dark);
    background: var(--bg-light);
    transition: all 0.3s ease;
}

.contact-form-wrapper .wpcf7-form input:focus,
.contact-form-wrapper .wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
}

.contact-form-wrapper .wpcf7-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form-wrapper .wpcf7-form input[type="submit"] {
    background: var(--gradient-accent);
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form-wrapper .wpcf7-form input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 60, 130, 0.3);
}

/* ============================================
   Investment Strategy Page
   ============================================ */
.strategy-section {
    background: var(--white);
    padding: 6rem 5%;
}

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

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

.strategy-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(61, 90, 128, 0.08);
}

.strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(61, 90, 128, 0.12);
}

.strategy-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 60, 130, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.strategy-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--accent);
}

.strategy-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.strategy-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

.strategy-note {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: rgba(0, 60, 130, 0.08);
    border-radius: 16px;
    padding: 2.5rem;
    margin-top: 3rem;
    border-left: 4px solid var(--accent);
}

.note-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 60, 130, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.note-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--accent);
}

.note-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.note-content p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

.development-section {
    background: var(--bg-light);
    padding: 6rem 5%;
}

.development-content {
    max-width: 1200px;
    margin: 0 auto;
}

.development-intro {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.9;
    max-width: 900px;
    margin-bottom: 3rem;
}

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

.development-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(61, 90, 128, 0.08);
    transition: all 0.4s ease;
}

.development-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(61, 90, 128, 0.12);
}

.dev-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 60, 130, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.dev-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
}

.development-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.development-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ============================================
   About Page
   ============================================ */
.about-section {
    background: var(--bg-light);
    padding: 6rem 5%;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
}

.about-content {
    background: var(--white);
    border-radius: 20px;
    padding: 4rem;
    box-shadow: 0 10px 40px rgba(61, 90, 128, 0.1);
}

.about-content .post-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
}

.about-content .post-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--primary);
    margin: 2rem 0 1rem;
}

.about-content .post-content p {
    margin-bottom: 1.5rem;
}

.about-block {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(61, 90, 128, 0.1);
}

/* Company Overview */
.company-overview {
    background: var(--white);
    border-radius: 20px;
    padding: 4rem;
    box-shadow: 0 10px 40px rgba(61, 90, 128, 0.1);
    margin-bottom: 4rem;
}

.company-logo {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.company-logo h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.logo-accent {
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.about-intro {
    max-width: 900px;
    margin: 0 auto;
}

.about-intro p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.about-intro p:last-child {
    margin-bottom: 0;
}

/* Foundation & Track Record Cards */
.foundation-track-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.foundation-card,
.track-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(61, 90, 128, 0.08);
    border: 1px solid rgba(61, 90, 128, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.foundation-card::before,
.track-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.foundation-card:hover,
.track-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(61, 90, 128, 0.15);
}

.foundation-card:hover::before,
.track-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 60, 130, 0.15) 0%, rgba(0, 50, 110, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.card-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent);
}

.foundation-card:hover .card-icon,
.track-card:hover .card-icon {
    background: var(--gradient-accent);
    transform: scale(1.1);
}

.foundation-card:hover .card-icon svg,
.track-card:hover .card-icon svg {
    color: var(--white);
}

.foundation-card h2,
.track-card h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.foundation-card h2::after,
.track-card h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
    transition: width 0.4s ease;
}

.foundation-card:hover h2::after,
.track-card:hover h2::after {
    width: 80px;
}

.foundation-card p,
.track-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.card-stats {
    display: flex;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(61, 90, 128, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Who We Are Section */
.who-we-are-section {
    background: var(--white);
    padding: 6rem 5%;
}

.who-we-are-container {
    max-width: 1200px;
    margin: 0 auto;
}

.who-we-are-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.who-we-are-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(61, 90, 128, 0.15);
}

.who-we-are-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 31, 46, 0.9), transparent);
    padding: 3rem 2rem 2rem;
}

.overlay-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.years-badge {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.years-text {
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
}

.who-we-are-content .section-tag-wrapper {
    margin-bottom: 1rem;
}

.who-we-are-content .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.who-we-are-content .section-title::before {
    display: none;
}

.story-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.divider-line {
    flex: 1;
    height: 2px;
    background: rgba(61, 90, 128, 0.2);
}

.divider-icon {
    width: 30px;
    height: 30px;
    stroke: var(--accent);
}

.story-intro {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.story-text {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 2rem;
}

.story-values {
    display: flex;
    gap: 2rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.value-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 60, 130, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
}

.value-text {
    font-weight: 600;
    color: var(--primary);
}

/* Investment Section */
.investment-section {
    background: var(--bg-light);
    padding: 6rem 5%;
}

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

.property-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.property-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(61, 90, 128, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.property-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(61, 90, 128, 0.15);
}

.property-card:hover::before {
    transform: scaleX(1);
}

.property-card.featured {
    background: linear-gradient(135deg, var(--primary) 0%, #4a6d8a 100%);
    color: var(--white);
}

.property-card.featured::before {
    background: var(--gradient-accent);
}

.property-card.featured h3 {
    color: var(--white);
}

.property-card.featured p {
    color: rgba(255, 255, 255, 0.85);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 3rem;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.property-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 60, 130, 0.15) 0%, rgba(0, 50, 110, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.property-card:hover .property-icon {
    background: var(--gradient-accent);
    transform: scale(1.1);
}

.property-icon svg {
    width: 32px;
    height: 32px;
    color: var(--accent);
    transition: all 0.4s ease;
}

.property-card:hover .property-icon svg {
    color: var(--white);
}

.property-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.property-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--accent);
    transition: width 0.4s ease;
}

.property-card:hover h3::after {
    width: 60px;
}

.property-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

.property-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(61, 90, 128, 0.1);
}

.feature-tag {
    background: rgba(0, 60, 130, 0.1);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.property-card:hover .feature-tag {
    background: var(--accent);
    color: var(--white);
}

.property-card.featured .property-features {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.property-card.featured .feature-tag {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(61, 90, 128, 0.12);
}

.property-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 60, 130, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.property-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent);
}

.property-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.property-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ============================================
   Single Post Page Styles
   ============================================ */
.single-post-main {
    background: var(--bg-light);
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    z-index: 1;
    touch-action: pan-y;
}

.single-post-container {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 5%; */
}

.single-post {
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(61, 90, 128, 0.12);
    border: 1px solid rgba(61, 90, 128, 0.08);
}

.post-header {
    padding: 3.5rem 3.5rem 0;
    text-align: center;
}

.post-header-top {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.meta-icon {
    width: 16px;
    height: 16px;
    stroke: var(--accent);
    fill: none;
}

.post-category a {
    color: var(--accent);
    font-weight: 600;
    transition: all 0.3s ease;
}

.post-category a:hover {
    color: var(--primary);
    text-decoration: none;
}

.post-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
    line-height: 1.25;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.post-title-divider {
    width: 100px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
    margin: 0 auto 3rem;
}

.post-thumbnail-wrapper {
    position: relative;
    margin: 0 3.5rem 3.5rem;
}

.post-thumbnail {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(61, 90, 128, 0.15);
    background: var(--bg-light);
}

.post-thumbnail img,
.post-thumbnail .featured-image {
    width: 100%;
    height: 400px;
    max-height: 400px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease, opacity 0.3s ease;
    opacity: 1;
}

.post-thumbnail:hover img {
    transform: scale(1.03);
}

.post-thumbnail-caption {
    display: block;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 1rem;
    font-style: italic;
}

.post-content-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    padding: 0 3.5rem 3.5rem;
}

.post-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-section {
    background: linear-gradient(135deg, rgba(0, 60, 130, 0.03) 0%, rgba(0, 102, 204, 0.05) 100%);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(61, 90, 128, 0.08);
}

.sidebar-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent);
}

.sidebar-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-item:last-child {
    margin-bottom: 0;
}

.sidebar-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.sidebar-value {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.5;
}

.sidebar-value a {
    color: var(--accent);
    transition: all 0.3s ease;
}

.sidebar-value a:hover {
    color: var(--primary);
    text-decoration: none;
}

.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.sidebar-tags a {
    background: rgba(0, 60, 130, 0.08);
    color: var(--accent);
    font-size: 0.8rem;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sidebar-tags a:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

.share-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border: none;
}

.share-section .sidebar-title {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.25);
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
}

.share-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.share-btn svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

.share-btn:hover {
    background: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.share-btn:hover svg {
    fill: var(--accent);
}

.share-facebook:hover {
    background: #1877f2;
}

.share-facebook:hover svg {
    fill: var(--white);
}

.share-twitter:hover {
    background: #1da1f2;
}

.share-twitter:hover svg {
    fill: var(--white);
}

.share-linkedin:hover {
    background: #0077b5;
}

.share-linkedin:hover svg {
    fill: var(--white);
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
}

.post-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.85rem;
    color: var(--primary);
    margin: 3.5rem 0 1.25rem;
    font-weight: 600;
}

.post-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--primary);
    margin: 2.5rem 0 1rem;
    font-weight: 600;
}

.post-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: var(--primary);
    margin: 2rem 0 0.75rem;
    font-weight: 600;
}

.post-content p {
    margin-bottom: 1.75rem;
}

.post-content a {
    color: var(--accent);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: all 0.3s ease;
}

.post-content a:hover {
    color: var(--primary);
    text-decoration-thickness: 2px;
}

.post-content blockquote {
    background: linear-gradient(135deg, rgba(0, 60, 130, 0.05) 0%, rgba(0, 102, 204, 0.08) 100%);
    border-left: 4px solid var(--accent);
    padding: 2rem 2.5rem;
    margin: 2.5rem 0;
    border-radius: 0 16px 16px 0;
    font-style: italic;
    color: var(--text-dark);
    position: relative;
}

.post-content blockquote::before {
    content: '"';
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.2;
    position: absolute;
    top: -10px;
    left: 10px;
    font-style: normal;
}

.post-content blockquote p {
    margin-bottom: 0;
    font-size: 1.15rem;
    line-height: 1.8;
}

.post-content ul,
.post-content ol {
    margin: 2rem 0;
    padding-left: 1.75rem;
}

.post-content li {
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
}

.post-content li::marker {
    color: var(--accent);
}

.post-content img {
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(61, 90, 128, 0.12);
}

.post-content .wp-caption-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.75rem;
    font-style: italic;
}

.post-content hr {
    border: none;
    height: 1px;
    background: rgba(61, 90, 128, 0.15);
    margin: 3rem 0;
}

.post-content .page-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(61, 90, 128, 0.1);
    color: var(--text-muted);
    font-weight: 500;
}

.post-content .page-links a {
    background: var(--bg-light);
    color: var(--primary);
    padding: 0.6rem 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.post-content .page-links a:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

.sidebar-tags a:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

.share-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.share-section .sidebar-title {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.share-btn svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
}

.share-btn:hover {
    background: var(--white);
    transform: translateY(-3px);
}

.share-btn:hover svg {
    fill: var(--accent);
}

.share-facebook:hover {
    background: #1877f2;
}

.share-facebook:hover svg {
    fill: var(--white);
}

.share-twitter:hover {
    background: #1da1f2;
}

.share-twitter:hover svg {
    fill: var(--white);
}

.share-linkedin:hover {
    background: #0077b5;
}

.share-linkedin:hover svg {
    fill: var(--white);
}

.post-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-light);
}

.post-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    color: var(--primary);
    margin: 2.5rem 0 1rem;
}

.post-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--primary);
    margin: 2rem 0 0.75rem;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content a {
    color: var(--accent);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: all 0.3s ease;
}

.post-content a:hover {
    color: var(--primary);
}

.post-content blockquote {
    background: var(--bg-light);
    border-left: 4px solid var(--accent);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--text-dark);
}

.post-content blockquote p {
    margin-bottom: 0;
}

.post-content ul,
.post-content ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.post-content li {
    margin-bottom: 0.75rem;
}

.post-content .page-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(61, 90, 128, 0.1);
    color: var(--text-muted);
    font-weight: 500;
}

.post-content .page-links a {
    background: var(--bg-light);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.post-content .page-links a:hover {
    background: var(--accent);
    color: var(--white);
}

.post-footer {
    padding: 2.5rem 3.5rem 4rem;
    border-top: 1px solid rgba(61, 90, 128, 0.1);
    margin: 0 3.5rem;
}

.post-tags {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(61, 90, 128, 0.08);
}

.tag-label {
    font-weight: 600;
    color: var(--primary);
    padding-top: 0.6rem;
    font-size: 0.9rem;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.tag-list a {
    background: rgba(0, 60, 130, 0.08);
    color: var(--accent);
    font-size: 0.85rem;
    padding: 0.5rem 1.1rem;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tag-list a:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 60, 130, 0.2);
}

.post-navigation {
    background: linear-gradient(135deg, rgba(0, 60, 130, 0.03) 0%, rgba(0, 102, 204, 0.05) 100%);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(61, 90, 128, 0.08);
}

.post-navigation .nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.post-navigation a {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 12px;
    background: var(--white);
}

.post-navigation a:hover {
    color: var(--accent);
    background: rgba(0, 60, 130, 0.05);
    transform: translateY(-3px);
}

.post-navigation .nav-subtitle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
}

.post-navigation .nav-subtitle svg {
    width: 18px;
    height: 18px;
    fill: var(--text-muted);
}

.post-navigation .nav-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
}

.post-navigation a:hover .nav-subtitle svg {
    fill: var(--accent);
}

.post-navigation a:hover .nav-title {
    color: var(--accent);
}

.post-navigation .next {
    text-align: right;
}

.post-navigation .next .nav-subtitle {
    justify-content: flex-end;
}

/* Comments Section */
.comments-area {
    padding: 0 3rem 3rem;
    margin: 0 3rem;
}

.comments-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent);
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.comment-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.comment-author .fn {
    font-weight: 600;
    color: var(--primary);
}

.comment-author .says {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.comment-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.comment-body p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

.reply {
    margin-top: 1rem;
}

.reply a {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.reply a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.comment-respond {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 2rem;
}

.comment-reply-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.comment-form p {
    margin-bottom: 1rem;
}

.comment-form label {
    display: block;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid rgba(61, 90, 128, 0.15);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--white);
    transition: all 0.3s ease;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 60, 130, 0.1);
}

.comment-form textarea {
    min-height: 150px;
    resize: vertical;
}

.comment-form .submit {
    background: var(--gradient-accent);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.comment-form .submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 60, 130, 0.3);
}

/* ============================================
   Responsive Styles for Single Post
   ============================================ */
@media (max-width: 1024px) {
    .post-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .post-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .sidebar-section {
        margin-bottom: 0;
    }
    
    .post-thumbnail img,
    .post-thumbnail .featured-image {
        height: 350px;
        max-height: 350px;
    }
}

@media (max-width: 768px) {
    .single-post-main {
        padding-top: 90px;
        padding-bottom: 60px;
    }
    
    .single-post-container {
        padding: 0 5% 3rem;
    }
    
    .post-header {
        padding: 2.5rem 2rem 0;
    }
    
    .post-header-top {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .post-meta {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .post-meta span {
        font-size: 0.85rem;
    }
    
    .post-title {
        font-size: 1.75rem;
    }
    
    .post-title-divider {
        margin-bottom: 2rem;
    }
    
    .post-thumbnail-wrapper {
        margin: 0 2rem 2.5rem;
    }
    
    .post-thumbnail img,
    .post-thumbnail .featured-image {
        height: 300px;
        max-height: 300px;
        border-radius: 16px;
    }
    
    .post-content-wrapper {
        padding: 0 2rem 2.5rem;
    }
    
    .post-sidebar {
        grid-template-columns: 1fr;
        margin-bottom: 2rem;
    }
    
    .post-footer {
        padding: 2rem 2rem 3rem;
        margin: 0 2rem;
    }
    
    .comments-area {
        padding: 0 2rem 3rem;
        margin: 0 2rem;
    }
    
    .post-navigation .nav-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .post-navigation .next {
        text-align: left;
    }
    
    .post-navigation a {
        padding: 1.25rem;
    }
    
    .post-navigation .nav-title {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .single-post-main {
        padding-top: 80px;
        padding-bottom: 40px;
    }
    
    .single-post-container {
        padding: 0 4% 2rem;
    }
    
    .single-post {
        border-radius: 16px;
    }
    
    .post-header {
        padding: 2rem 1.5rem 0;
    }
    
    .post-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .post-meta {
        gap: 1rem;
    }
    
    .post-meta span {
        font-size: 0.8rem;
    }
    
    .post-thumbnail-wrapper {
        margin: 0 1rem 2rem;
    }
    
    .post-thumbnail img,
    .post-thumbnail .featured-image {
        height: 220px;
        max-height: 220px;
        border-radius: 12px;
    }
    
    .post-content-wrapper {
        padding: 0 1.5rem 2rem;
    }
    
    .post-content {
        font-size: 1rem;
        line-height: 1.85;
    }
    
    .post-content h2 {
        font-size: 1.5rem;
        margin-top: 2.5rem;
    }
    
    .post-content h3 {
        font-size: 1.2rem;
        margin-top: 2rem;
    }
    
    .sidebar-section {
        padding: 1.5rem;
    }
    
    .share-buttons {
        justify-content: center;
    }
    
    .post-tags {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .tag-label {
        padding-top: 0;
    }
    
    .post-footer {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .comments-area {
        padding: 0 1rem 2rem;
        margin: 0 1rem;
    }
    
    .post-navigation {
        padding: 1.5rem;
    }
    
    .post-navigation a {
        padding: 1rem;
        font-size: 0.8rem;
    }
}

/* ============================================
   Responsive Styles for Pages
   ============================================ */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .strategy-grid {
        grid-template-columns: 1fr;
    }
    
    .development-grid {
        grid-template-columns: 1fr;
    }
    
    .who-we-are-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .property-types {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .foundation-track-grid {
        grid-template-columns: 1fr;
    }
    
    .company-overview {
        padding: 2.5rem;
    }
    
    .company-logo h1 {
        font-size: 2rem;
    }
    
    .about-intro p {
        font-size: 1rem;
        text-align: left;
    }
    
    .deal-size-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .deal-stats {
        flex-direction: row;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 40vh;
        padding: 6rem 5% 3rem;
        margin-top: 50px;
    }
    
    .page-hero-content h1 {
        font-size: clamp(2rem, 4vw, 2.5rem);
    }
    
    .contact-section,
    .strategy-section,
    .development-section,
    .about-section,
    .who-we-are-section,
    .investment-section {
        padding: 4rem 5%;
    }
    
    .contact-info,
    .contact-form-wrapper,
    .about-content {
        padding: 2rem;
    }
    
    .strategy-note {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .story-values {
        flex-direction: column;
        gap: 1rem;
    }
    
    .property-types {
        grid-template-columns: 1fr;
    }
    
    .foundation-card,
    .track-card {
        padding: 2rem;
    }
    
    .card-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .image-overlay {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .years-badge {
        font-size: 1.5rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        margin-top: 70px;
        min-height: 22vh;
        padding: 5rem 5% 2rem;
    }
    
    .page-hero-content h1 {
        font-size: clamp(1.75rem, 5vw, 2.25rem);
    }
    
    .page-hero-content p {
        font-size: 0.95rem;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-icon {
        width: 44px;
        height: 44px;
    }
    
    .strategy-card,
    .development-card,
    .property-card,
    .foundation-card,
    .track-card,
    .deal-size-card {
        padding: 1.5rem;
    }
    
    .company-overview {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .company-logo h1 {
        font-size: 1.75rem;
    }
    
    .deal-stats {
        flex-direction: column;
    }
    
    .deal-stat {
        padding: 0.75rem 1rem;
    }
    
    .stat-value {
        font-size: 1.25rem;
    }
    
    .who-we-are-image {
        border-radius: 12px;
    }
}

/* ============================================
   Coming Soon Page
   ============================================ */
.coming-soon-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 5% 4rem;
    overflow: hidden;
    background: linear-gradient(135deg, #001233 0%, #002855 50%, #001a3a 100%);
}

.coming-soon-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.coming-soon-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.coming-soon-particles span {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.1) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out;
}

.coming-soon-particles span:nth-child(1) {
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.coming-soon-particles span:nth-child(2) {
    top: 20%;
    right: -10%;
    width: 400px;
    height: 400px;
    animation-delay: -5s;
}

.coming-soon-particles span:nth-child(3) {
    bottom: -15%;
    left: 20%;
    animation-delay: -10s;
}

.coming-soon-particles span:nth-child(4) {
    top: 50%;
    left: -15%;
    width: 250px;
    height: 250px;
    animation-delay: -15s;
}

.coming-soon-particles span:nth-child(5) {
    bottom: 10%;
    right: 10%;
    animation-delay: -7s;
}

.coming-soon-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0, 102, 204, 0.15);
    border: 1px solid rgba(0, 102, 204, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 2rem;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.badge-text {
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.coming-soon-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.coming-soon-description {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.coming-soon-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.coming-soon-cta .btn-home,
.coming-soon-cta .btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s ease;
}

.coming-soon-cta .btn-home {
    background: var(--gradient-accent);
    color: #ffffff;
}

.coming-soon-cta .btn-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 60, 130, 0.4);
}

.coming-soon-cta .btn-contact {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.coming-soon-cta .btn-contact:hover {
    border-color: var(--accent);
    background: rgba(0, 102, 204, 0.1);
}

.coming-soon-cta svg {
    width: 18px;
    height: 18px;
}

.coming-soon-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.coming-soon-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.coming-soon-features .feature-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 204, 0.2);
    border-radius: 8px;
}

.coming-soon-features .feature-icon svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

.coming-soon-features .feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

.coming-soon-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    letter-spacing: 1px;
    animation: fadeIn 1s ease-out 1.2s both;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

.scroll-arrow svg {
    width: 24px;
    height: 24px;
}

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

/* Coming Soon Preview Section */
.coming-soon-preview {
    background: var(--bg-light);
    padding: 6rem 5%;
}

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

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

.preview-header .section-tag {
    display: inline-block;
    margin-bottom: 1rem;
}

.preview-header .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.preview-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 60, 130, 0.1);
}

.preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 50, 110, 0.1);
}

.preview-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(0, 60, 130, 0.08);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1;
}

.preview-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.preview-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

.preview-cta {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 60, 130, 0.1);
}

.preview-cta p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.preview-cta .btn-notify {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-accent);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.4s ease;
}

.preview-cta .btn-notify:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 60, 130, 0.3);
}

.preview-cta .btn-notify svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.preview-cta .btn-notify:hover svg {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
    .coming-soon-hero {
        min-height: auto;
        padding: 6rem 5% 4rem;
    }
    
    .coming-soon-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .coming-soon-features .feature-item {
        justify-content: center;
    }
    
    .coming-soon-scroll-indicator {
        display: none;
    }
    
    .preview-card {
        padding: 2rem;
    }
}

