/* ===== ROOT VARIABLES - WHITE & GOLD THEME ===== */
:root {
    /* Primary Colors */
    --primary: #ffffff;
    --secondary: #f8f9fa;
    --tertiary: #f1f3f5;
    
    /* Accent Colors - Złoto */
    --accent: #b8860b;
    --accent-dark: #8b6914;
    --accent-light: #d4af37;
    --accent-glow: rgba(184, 134, 11, 0.08);
    
    /* Text Colors */
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-tertiary: #666666;
    --text-muted: #888888;
    
    /* UI Colors */
    --border: #e1e5e9;
    --border-light: #eef1f4;
    --border-dark: #d1d9e0;
    --background: #ffffff;
    --surface: #f8f9fa;
    
    /* Status Colors */
    --success: #059669;
    --warning: #d97706;
    --error: #dc2626;
    --info: #2563eb;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--tertiary) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 4px 20px rgba(184, 134, 11, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 50px;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
}

/* ===== RESET & BASE STYLES ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background-color: var(--primary);
    color: var(--text-secondary);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    font-weight: 400;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(184, 134, 11, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(241, 243, 245, 0.3) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Georgia', serif;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: var(--space-md);
}

h1 {
    font-size: 3.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent) 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.25rem;
    position: relative;
    display: inline-block;
    margin-bottom: var(--space-lg);
}

h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 70px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

h3 {
    font-size: 1.625rem;
    font-weight: 600;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--accent);
}

p {
    margin-bottom: var(--space-md);
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: all var(--transition-fast);
    font-weight: 500;
}

a:hover {
    color: var(--accent-dark);
}

strong {
    color: var(--text-primary);
    font-weight: 600;
}

.small {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    letter-spacing: 0.01em;
}

/* ===== LAYOUT & CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    width: 100%;
}

.main-content {
    min-height: calc(100vh - 400px);
    padding: var(--space-xl) 0;
}

/* ===== HEADER STYLES ===== */
.site-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    padding: 1rem 0;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
}

/* Logo i brand */
.brand-container {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

/* Search bar */
.search-container {
    flex: 1;
    max-width: 400px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    background: var(--surface);
    color: var(--text-primary);
    font-size: 0.9375rem;
    transition: var(--transition-normal);
    font-family: inherit;
}

.search-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
    background: white;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-tertiary);
    pointer-events: none;
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex: 1;
    justify-content: center;
}

.main-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}

.main-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: -1;
}

.main-nav a:hover {
    color: var(--text-primary);
    background: rgba(184, 134, 11, 0.05);
}

.main-nav a:hover::before {
    opacity: 0.08;
}

.main-nav a.active {
    color: var(--accent);
    background: var(--accent-glow);
    font-weight: 600;
}

/* Admin Links */
.admin-link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.admin-link a {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all var(--transition-normal);
    white-space: nowrap;
    letter-spacing: 0.01em;
    text-decoration: none;
}

.admin-link a:first-child {
    background: var(--gradient-primary);
    color: white;
}

.admin-link a:first-child:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.admin-link a:last-child {
    background: transparent;
    border: 1.5px solid var(--border-dark);
    color: var(--text-secondary);
}

.admin-link a:last-child:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(184, 134, 11, 0.03);
}

/* ===== BUTTONS ===== */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.25rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    letter-spacing: 0.02em;
    box-shadow: var(--shadow-sm);
    font-family: inherit;
}

.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: var(--transition-slow);
}

.button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    color: white;
}

.button:hover::before {
    left: 100%;
}

.button-secondary {
    background: transparent;
    border: 1.5px solid var(--accent);
    color: var(--accent);
    box-shadow: none;
}

.button-secondary:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.button-small {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
}

/* ===== CARDS (Generic) ===== */
.card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    margin-bottom: var(--space-lg);
    position: relative;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    padding: 6rem 0 5rem;
    background: linear-gradient(rgba(255,255,255,0.95), rgba(255,255,255,0.95));
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(184, 134, 11, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(241, 243, 245, 0.5) 0%, transparent 50%);
    z-index: 0;
}

.hero-content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s ease-out;
}

.hero p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Statystyki */
.stats {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: var(--space-lg);
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    min-width: 180px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: var(--space-xs);
    font-family: 'Inter', sans-serif;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== QUICK NAVIGATION SECTION ===== */
.quick-nav-section {
    padding: var(--space-xl) 0;
    background: var(--surface);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.quick-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.quick-nav-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-decoration: none;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.quick-nav-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.quick-nav-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    line-height: 1;
}

.quick-nav-card h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.quick-nav-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: auto; /* Pushes the link to the bottom */
    padding-bottom: var(--space-md);
}

.quick-nav-link {
    font-weight: 600;
    color: var(--accent);
    font-size: 0.9rem;
    margin-top: var(--space-sm);
    align-self: flex-start;
}

.quick-nav-card:hover .quick-nav-link {
    color: var(--accent-dark);
}

/* ===== BLOG & POST VIEW ===== */
.posts-list .card {
    margin-bottom: var(--space-md);
    transition: var(--transition-normal);
}
.posts-list .card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.post-view h1 {
    font-size: 2.75rem;
    background: none;
    -webkit-text-fill-color: unset;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.post-meta {
    margin-bottom: var(--space-xl);
    color: var(--text-tertiary);
}

/* ===== FEATURED SERVICES ===== */
.featured-services {
    padding: var(--space-xl) 0;
    background: var(--surface);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--border-light);
}

.section-header h2 {
    margin-bottom: 0;
}

.view-all {
    color: var(--accent);
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-normal);
    font-size: 0.9375rem;
}

.view-all:hover {
    gap: 0.75rem;
    color: var(--accent-dark);
}

/* Kafelki usług */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--border);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.service-icon-container {
    height: 80px;
    background: linear-gradient(135deg, var(--accent-glow) 0%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border-light);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent);
}

.service-content {
    padding: var(--space-lg);
    height: calc(100% - 80px);
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.service-content p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: var(--space-md);
}

/* ===== PROPERTIES SECTION ===== */
.featured-properties {
    padding: var(--space-xl) 0;
    background: white;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--space-lg);
}

.property-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--border);
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.property-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    z-index: 2;
}

.property-badge[style*="background: var(--info)"] {
    background: var(--info) !important;
}

.property-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.property-card:hover .property-image img {
    transform: scale(1.05);
}

.property-content {
    padding: var(--space-lg);
}

.property-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-sm);
}

.property-header h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
}

.property-price {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.property-category {
    display: inline-block;
    background: var(--accent-glow);
    color: var(--accent);
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 500;
    margin-bottom: var(--space-md);
    letter-spacing: 0.02em;
}

.property-meta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.property-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-tertiary);
    font-size: 0.875rem;
}

/* ===== PARTNERS SECTION ===== */
.partners {
    padding: var(--space-xl) 0;
    background: white;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-lg);
    align-items: center;
}

.partner-logo {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: var(--transition-normal);
    filter: grayscale(1);
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0);
    transform: translateY(-3px);
}

/* ===== TEAM SECTION ===== */
.team-section {
    padding: var(--space-xl) 0;
    background: var(--surface);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.team-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    text-align: center;
    border: 1px solid var(--border);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.team-image {
    height: 200px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-content {
    padding: var(--space-lg);
}

.team-position {
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: var(--space-xl) 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-form {
    background: var(--surface);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.post-content {
    padding: var(--space-lg) 0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.post-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.post-gallery img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.post-videos {
    margin-top: var(--space-xl);
}

.post-videos video {
    width: 100%;
    max-width: 720px;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: white;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.post-footer {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-light);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: var(--space-xl) 0 0;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--space-sm);
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
}

.footer-section ul li a:hover {
    color: var(--accent);
    padding-left: 0.375rem;
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: var(--space-lg) 0;
    background: white;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-links {
    display: flex;
    gap: var(--space-lg);
}

.footer-links a {
    color: var(--text-tertiary);
    font-size: 0.8125rem;
    text-decoration: none;
    transition: var(--transition-fast);
    font-weight: 400;
}

.footer-links a:hover {
    color: var(--accent);
}

.copyright {
    color: var(--text-tertiary);
    font-size: 0.8125rem;
    font-weight: 400;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .properties-grid,
    .services-grid,
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .stats {
        gap: var(--space-lg);
    }
    
    .stat-item {
        min-width: 160px;
        padding: var(--space-md);
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .site-header .container {
        flex-wrap: wrap;
        gap: var(--space-md);
    }
    
    .brand-container {
        order: 1;
    }
    
    .menu-toggle {
        display: block;
        order: 2;
        margin-left: auto;
    }
    
    .search-container {
        order: 4;
        max-width: 100%;
        width: 100%;
        margin-top: var(--space-sm);
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        padding: var(--space-lg);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        align-items: stretch;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
        z-index: 999;
        order: 3;
    }
    
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .main-nav a {
        padding: 1rem;
        text-align: center;
        border-radius: var(--radius-md);
    }
    
    .admin-link {
        order: 2;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 4rem 0 3rem;
    }
    
    .hero-cta,
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }
    
    .view-all {
        align-self: flex-end;
    }
    
    .stats {
        gap: var(--space-md);
    }
    
    .stat-item {
        min-width: 140px;
        padding: var(--space-md);
        flex: 1;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--space-md);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    .properties-grid,
    .services-grid,
    .team-grid,
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card,
    .property-card,
    .team-card {
        padding: var(--space-md);
    }
    
    .logo {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .brand-name {
        font-size: 1.25rem;
    }
    
    .stat-item {
        min-width: 120px;
        padding: var(--space-sm);
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.text-accent { color: var(--accent); }
.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-white { color: white; }

.bg-white { background: white; }
.bg-surface { background: var(--surface); }
.bg-accent { background: var(--accent); }
.bg-gradient { background: var(--gradient-primary); }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-none { box-shadow: none; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mt-4 { margin-top: var(--space-xl); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }
.my-1 { margin-top: var(--space-sm); margin-bottom: var(--space-sm); }
.my-2 { margin-top: var(--space-md); margin-bottom: var(--space-md); }
.my-3 { margin-top: var(--space-lg); margin-bottom: var(--space-lg); }
.my-4 { margin-top: var(--space-xl); margin-bottom: var(--space-xl); }
.mx-auto { margin-left: auto; margin-right: auto; }

.p-0 { padding: 0; }
.p-1 { padding: var(--space-sm); }
.p-2 { padding: var(--space-md); }
.p-3 { padding: var(--space-lg); }
.p-4 { padding: var(--space-xl); }
.py-1 { padding-top: var(--space-sm); padding-bottom: var(--space-sm); }
.py-2 { padding-top: var(--space-md); padding-bottom: var(--space-md); }
.py-3 { padding-top: var(--space-lg); padding-bottom: var(--space-lg); }
.py-4 { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.gap-1 { gap: var(--space-sm); }
.gap-2 { gap: var(--space-md); }
.gap-3 { gap: var(--space-lg); }
.gap-4 { gap: var(--space-xl); }

.hidden { display: none !important; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.grid { display: grid; }

.w-full { width: 100%; }
.w-auto { width: auto; }
.max-w-full { max-width: 100%; }

.rounded { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-full { border-radius: var(--radius-full); }

.border { border: 1px solid var(--border); }
.border-t { border-top: 1px solid var(--border); }
.border-b { border-bottom: 1px solid var(--border); }
.border-l { border-left: 1px solid var(--border); }
.border-r { border-right: 1px solid var(--border); }

.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.opacity-100 { opacity: 1; }

.transition { transition: var(--transition-normal); }
.transition-fast { transition: var(--transition-fast); }
.transition-slow { transition: var(--transition-slow); }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }
.z-100 { z-index: 100; }

.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }

.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }

.cursor-pointer { cursor: pointer; }
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }

.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }
.normal-case { text-transform: none; }

.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }
.leading-loose { line-height: 2; }