/* ========================================
   CIELLC - Global Stylesheet
   Modern, Sleek, Professional Design
   ======================================== */

/* --- CSS Custom Properties --- */
:root {
    --primary: #0a2540; /* Deeper, more sophisticated navy */
    --primary-dark: #051626;
    --primary-light: #16335a;
    --accent: #d4af37; /* Sophisticated gold/brass */
    --accent-light: #fcf6e5;
    --text-dark: #1a1f36;
    --text-medium: #4f566b;
    --text-muted: #a3acb9;
    --text-light: #ffffff;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e3e8ee;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.02), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.03);
    --shadow-lg: 0 15px 35px rgba(0,0,0,0.06), 0 5px 15px rgba(0,0,0,0.04);
    --shadow-hover: 0 20px 45px rgba(0,0,0,0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --font: 'Poppins', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--bg-white);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.01em;
}
main { flex-grow: 1; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0px 10px; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
h1, h2, h3, h4 { 
    font-family: var(--font); 
    color: var(--primary); 
    margin-bottom: 1.5rem; 
    font-weight: 600; 
    line-height: 1.25;
    letter-spacing: -0.02em;
}
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
p { color: var(--text-medium); margin-bottom: 1.5rem; }

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.8rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    letter-spacing: 0.12em;
    font-family: var(--font);
    text-transform: uppercase;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(-1px); }
.btn-primary { background-color: var(--primary); color: var(--text-light); }
.btn-primary:hover { background-color: var(--primary-dark); }
.btn-accent { background-color: var(--accent); color: var(--text-dark); }
.btn-accent:hover { background-color: #c0a030; }
.btn-outline { background: transparent; color: var(--text-light); border-color: rgba(255,255,255,0.3); }
.btn-outline:hover { background: var(--text-light); color: var(--primary); border-color: var(--text-light); }
.btn-lg { padding: 1.1rem 3rem; font-size: 0.85rem; }

/* --- Top Bar --- */
.top-bar {
    background: var(--bg-light);
    color: var(--text-medium);
    font-size: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}
.top-bar-inner { justify-content: space-between; align-items: center; }
.contact-info { display: flex; gap: 2rem; justify-content: flex-end; }
.contact-info span { display: flex; align-items: center; gap: 0.5rem; }
.contact-info i { color: var(--accent); font-size: 0.8rem; }
.top-bar-links a { color: var(--text-muted); transition: var(--transition); }
.top-bar-links a:hover { color: var(--primary); }

/* --- Main Header --- */
.main-header {
    background-color: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-inner { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0; }
.logo { max-height: 80px; transition: var(--transition); }
.logo:hover { opacity: 0.9; }
.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links li a {
    font-weight: 500;
    color: var(--text-dark);
    padding: 0.5rem 0;
    font-size: 0.8rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; width: 0;
    height: 1px;
    background: var(--primary);
    transition: var(--transition);
}
.nav-links li a:hover::after { width: 100%; }
.nav-links li a.active::after { width: 100%; }
.nav-links li a.btn { padding: 0.8rem 1.8rem; color: var(--text-light); }
.nav-links li a.btn::after { display: none; }
.menu-toggle {
    display: none; background: none; border: none;
    font-size: 1.4rem; color: var(--primary);
    cursor: pointer; padding: 0.5rem;
}

/* --- Page Banner (Inner pages) --- */
.page-banner {
    background-color: var(--primary);
    padding: 8rem 0;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}
.page-banner h1, .page-banner p { color: #ffffff; }
.page-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(13, 59, 102, 0.9) 0%, rgba(8, 42, 74, 0.85) 100%);
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner h1 { 
    color: var(--text-light); 
    font-size: 2.5rem; 
    margin-bottom: 0.5rem; 
    font-weight: 700; 
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.page-banner p { font-size: 1.1rem; opacity: 0.85; max-width: 750px; margin: 0 auto; }

/* --- Hero Section (Home) --- */
.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-color: var(--primary);
    color: #ffffff;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(10, 37, 64, 0.7), rgba(10, 37, 64, 0.95));
    z-index: 1;
}
.hero-video, .hero-image {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%; min-height: 100%;
    width: auto; height: auto;
    z-index: 0;
    object-fit: cover;
}
.hero-content { 
    position: relative; 
    z-index: 2; 
    max-width: 1000px; 
    text-align: center; 
    margin: 0 auto;
    padding: 0 1.5rem; 
}
.hero h1 { 
    font-size: clamp(2rem, 6vw, 4rem); 
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem; 
    line-height: 1.1; 
    font-weight: 700; 
    color: #ffffff;
}
.hero p { font-size: 1.25rem; margin: 0 auto 3.5rem; opacity: 0.9; line-height: 1.6; color: #ffffff; max-width: 750px; }
.hero-buttons { display: flex; gap: 1.5rem; justify-content: center; }

/* --- Section Styling --- */
.section { padding: 8rem 0; }
.section-white { background-color: var(--bg-white); }
.section-light { background-color: var(--bg-light); }
.section-dark { background-color: var(--primary); color: #ffffff; }
.section-header { text-align: center; margin-bottom: 5rem; display: flex; flex-direction: column; align-items: center; }
.section-header h2, .section-kicker { 
    font-size: 0.8rem; 
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--accent);
    margin-bottom: 1.5rem;
}
.section-header h3 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--primary);
    font-weight: 700;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.section-dark .section-header h3, 
.testimonials-section .section-header h3 { 
    color: #ffffff; 
}
.section-header p { max-width: 700px; margin: 0 auto; font-size: 1.1rem; color: var(--text-medium); }

/* --- About Preview (Home) --- */
.about-preview { display: flex; flex-wrap: wrap; gap: 4rem; align-items: center; }
.about-text { flex: 1; min-width: 320px; }
.about-text h3, .about-content h2 { 
    font-size: clamp(1.8rem, 3.5vw, 2.5rem); 
    margin-bottom: 2rem; 
    line-height: 1.15; 
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--primary);
}
.about-text p { font-size: 1.05rem; line-height: 1.8; margin-bottom: 2rem; }
.about-image { flex: 1; min-width: 320px; }
.about-image-wrapper { position: relative; }
.about-image-wrapper img { border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.trust-badge {
    position: absolute;
    bottom: -15px; left: -15px;
    background: var(--primary);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--accent);
    box-shadow: var(--shadow-lg);
    line-height: 1.2;
    border-left: 4px solid var(--accent);
}
.trust-badge span { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.7); font-weight: 400; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.3rem; }

/* --- Check List --- */
.check-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-dark);
    font-size: 1rem;
}
.check-list i { color: var(--primary); font-size: 1rem; }

/* --- Service Cards (Home & Services Page) --- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
.service-card, .service-card-premium {
    background: var(--bg-white);
    padding: 3.5rem 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    text-align: left;
}
.service-card:hover, .service-card-premium:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.service-card i { font-size: 2.5rem; color: var(--primary); margin-bottom: 1.2rem; display: block; }

.service-icon-box {
    width: 65px; height: 65px;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: 50%;
    margin-bottom: 2rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    transition: var(--transition);
}
.service-card-premium:hover .service-icon-box { background: var(--primary); color: white; }

.service-card h3, .service-card-premium h3 { font-size: 1.4rem; margin-bottom: 1rem; }
.service-card p, .service-card-premium p { font-size: 0.95rem; color: var(--text-medium); margin-bottom: 0; }

/* --- Property Cards (Rent Page) --- */
.property-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 3rem; }
.property-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}
.property-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
.property-image { position: relative; height: 260px; overflow: hidden; }
.property-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.property-card:hover .property-image img { transform: scale(1.05); }
.property-image .no-image { width: 100%; height: 100%; background: var(--bg-light); display: flex; align-items: center; justify-content: center; color: var(--text-medium); }
.property-badge {
    position: absolute; top: 20px; right: 20px;
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    font-weight: 600; font-size: 0.75rem;
    letter-spacing: 0.1em; text-transform: uppercase;
}
.badge-available { background: var(--primary); color: white; }
.badge-rented { background: #eee; color: #666; }
.property-body { padding: 2rem; flex-grow: 1; display: flex; flex-direction: column; }
.property-title { font-size: 1.25rem; margin-bottom: 0.5rem; }
.property-address { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 0.85rem; display: flex; align-items: center; gap: 0.4rem; letter-spacing: 0.05em; }
.property-address i { color: var(--accent); font-size: 0.85rem; }
.property-price { font-size: 1.6rem; font-weight: 700; color: var(--primary); margin-bottom: 1.5rem; }
.property-price span { font-size: 0.8rem; font-weight: 400; color: var(--text-muted); text-transform: uppercase; }
.property-meta { display: flex; gap: 2rem; padding: 1.2rem 0; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); margin-bottom: 1.5rem; font-size: 0.9rem; color: var(--text-medium); }
.property-meta span { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; font-weight: 500; }
.property-meta i { color: var(--primary); font-size: 0.85rem; }
.property-empty h3 { 
    color: #888; 
    font-weight: 500; 
    font-size: 1.1rem; 
    text-transform: uppercase; 
    letter-spacing: 0.05em; 
}
.property-desc { color: var(--text-medium); line-height: 1.6; margin-bottom: 1.5rem; flex-grow: 1; font-size: 0.92rem; }
.property-empty { grid-column: 1 / -1; text-align: center; padding: 4rem 2rem; background: var(--bg-white); border-radius: var(--radius-md); }
.property-empty i { font-size: 3rem; color: #ccc; margin-bottom: 1rem; display: block; }

/* --- Value Cards (About Page) --- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
.value-card {
    background: var(--bg-white);
    padding: 4rem 3rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}
.value-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); border-color: var(--primary); }
.value-card i { font-size: 3rem; color: var(--accent); margin-bottom: 2rem; display: block; }
.value-card h3 { 
    font-size: 1.35rem; 
    margin-bottom: 1rem; 
    color: var(--primary); 
    text-transform: uppercase; 
    letter-spacing: 0.05em; 
}
.value-card p { font-size: 1rem; line-height: 1.6; color: var(--text-medium); }

/* --- About Content --- */
.about-content { display: flex; flex-wrap: wrap; gap: 4rem; align-items: center; }
.about-content .text-col { flex: 1; min-width: 320px; }
.about-content .text-col h2 { font-size: 2.2rem; margin-bottom: 1.5rem; }
.about-content .text-col p { font-size: 1.02rem; line-height: 1.85; margin-bottom: 1.25rem; }
.about-content .image-col { flex: 1; min-width: 320px; }
.about-content .image-col img { border-radius: var(--radius-md); box-shadow: var(--shadow-lg); width: 100%; }

/* --- CTA Section --- */
.cta-section { text-align: center; }
.cta-section h2 { color: #ffffff; text-transform: uppercase; font-size: 2.2rem; margin-bottom: 1rem; }
.cta-section p { font-size: 1.1rem; margin-bottom: 2rem; opacity: 1; color: #ffffff; }

/* --- Contact Info Cards --- */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.contact-card { text-align: center; padding: 1.5rem 2rem; min-width: 180px; }
.contact-card i { font-size: 1.8rem; color: var(--primary); margin-bottom: 1rem; display: block; }
.contact-card h4 { 
    font-size: 1rem; 
    margin-bottom: 0.4rem; 
    color: var(--primary); 
    text-transform: uppercase; 
    letter-spacing: 0.05em; 
}
.contact-card p { color: var(--text-medium); font-size: 0.92rem; }

/* --- About Page Extensions --- */
.testimonials-section {
    position: relative;
    color: #fff;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 10rem 0;
}
.testimonials-section .section-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 37, 64, 0.92);
    z-index: 1;
}
.testimonials-section .container { position: relative; z-index: 2; }
.testimonials-section h2, .testimonials-section p { color: #fff; }

.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 3rem; margin-top: 4rem; }
.testimonial-card {
    padding: 3rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    text-align: center;
}
.testimonial-card:hover { transform: translateY(-5px); background: rgba(255, 255, 255, 0.03); border-color: var(--accent); }
.testimonial-card i { font-size: 1.5rem; color: var(--accent); margin-bottom: 2rem; display: block; }
.testimonial-card q { font-style: italic; font-size: 1.25rem; line-height: 1.6; display: block; margin-bottom: 2rem; font-weight: 300; }
.testimonial-author { font-weight: 600; color: #fff; margin-bottom: 0.2rem; font-size: 1rem; letter-spacing: 0.05em; display: block; }
.testimonial-role { font-size: 0.8rem; color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; display: block; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; margin-top: 3.5rem; }
.team-card { 
    text-align: left; 
    transition: var(--transition); 
    background: #fff; 
    border-radius: var(--radius-md); 
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.team-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.team-image { 
    width: 100%; 
    height: 380px; 
    margin-bottom: 0; 
    border-radius: 0; 
    border: none;
    box-shadow: none;
}
.team-image img { width: 100%; height: 100%; object-fit: cover; }
.team-info { 
    padding: 1.5rem; 
    border-top: 4px solid var(--accent);
}
.team-card h3 { 
    font-size: 1.5rem; 
    margin-bottom: 0.4rem; 
    color: var(--primary); 
    text-transform: uppercase; 
    letter-spacing: 0.02em; 
}
.team-card p { color: var(--accent); font-weight: 600; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; }

/* --- Forms --- */
.frontend-form {
    background: var(--bg-white);
    padding: 5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.form-group { margin-bottom: 2.5rem; }
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 0.75rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.form-control {
    width: 100%;
    padding: 1.1rem 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition);
    background: var(--bg-white);
}
.form-control:focus { 
    outline: none; 
    border-color: var(--primary); 
    box-shadow: 0 0 0 4px rgba(10, 37, 64, 0.05);
}
.form-control::placeholder { color: var(--text-muted); }

.alert { 
    padding: 1.5rem; 
    border-radius: var(--radius-sm); 
    margin-bottom: 3rem; 
    font-size: 0.9rem; 
    font-weight: 500;
    text-align: center;
}
.alert-success { background-color: #f0fff4; color: #22543d; border: 1px solid #c6f6d5; }
.alert-error { background-color: #fff5f5; color: #822727; border: 1px solid #fed7d7; }

/* --- Footer --- */
.main-footer {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 2rem 0 0;
}
.footer-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    padding: 6rem 0;
}
.footer-logo { margin-bottom: 2rem; }
.footer-logo img { max-height: 50px; filter: brightness(0) invert(1); }
.footer-col p, .footer-col ul li a { color: rgba(255, 255, 255, 0.75); line-height: 1.8; font-size: 0.95rem; }
.footer-col h3 { 
    color: var(--accent); 
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}
.footer-links li { margin-bottom: 1rem; }
.footer-links a:hover { color: var(--accent); padding-left: 5px; }

/* Newsletter Form */
.newsletter-form { margin-top: 1.5rem; }
.newsletter-input-group { 
    display: flex; 
    border-bottom: 2px solid rgba(255, 255, 255, 0.1); 
    padding-bottom: 0.5rem; 
    transition: border-color var(--transition);
}
.newsletter-input-group:focus-within { border-color: var(--accent); }
.newsletter-input-group input { 
    background: transparent; 
    border: none; 
    color: #fff; 
    padding: 0.5rem 1rem 0.5rem 0; 
    width: 100%; 
    font-size: 0.95rem;
}
.newsletter-input-group input:focus { outline: none; }
.newsletter-input-group .btn-accent { 
    padding: 0.5rem 1.5rem; 
    font-size: 0.85rem; 
    text-transform: uppercase; 
    letter-spacing: 0.1em;
    border-radius: 4px;
}
.footer-col.contact-col p { margin-bottom: 1rem; align-items: flex-start; }
.footer-col.contact-col i { color: var(--accent); margin-top: 5px; }

.footer-bottom {
    background-color: var(--bg-white);
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
}
.footer-bottom p { color: var(--text-medium); font-size: 0.8rem; margin-bottom: 0; }

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

/* Tablet */
@media (max-width: 992px) {
    .section { padding: 6rem 0; }
    .hero { height: 60vh; min-height: 450px; }
    .about-preview, .about-content { gap: 2.5rem; }
    .page-banner h1 { font-size: 2.2rem; }
    .property-grid { grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); }
    .footer-inner { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile */
@media (max-width: 768px) {
    .top-bar-inner { flex-direction: column; gap: 0.4rem; text-align: center; }
    .contact-info { flex-direction: row; gap: 0.2rem; justify-content: center;}
    .contact-info span { justify-content: center; }
    .admin-link { display: none; }

    .menu-toggle { display: block; }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--bg-white);
        box-shadow: var(--shadow-lg);
        padding: 1rem 0;
        gap: 0;
        border-top: 2px solid var(--primary);
    }
    .nav-links.active { display: flex; }
    .nav-links li a { padding: 0.85rem 1.5rem; display: block; border-radius: 0; }
    .nav-links li a::after { display: none; }
    .nav-links li a:hover { background: var(--bg-light); }
    .nav-links li a.btn { margin: 0.5rem 1.5rem; text-align: center; border-radius: var(--radius-sm); }

    .hero { height: auto; min-height: 400px; padding: 4rem 0; }
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { text-align: center; }

    .about-preview, .about-content { flex-direction: column; gap: 2rem; }
    .about-text, .about-image, .about-content .text-col, .about-content .image-col { min-width: 100%; }
    .trust-badge { bottom: -15px; left: 15px; font-size: 0.95rem; padding: 1rem; }

    .section { padding: 4rem 0; }
    .section-header h2, .section-kicker { font-size: 0.75rem; letter-spacing: 0.25em; }
    .page-banner { padding: 3rem 0; }
    .page-banner h1 { font-size: 1.8rem; }

    .services-grid, .values-grid { grid-template-columns: 1fr; }
    .property-grid { grid-template-columns: 1fr; }

    .service-detail { flex-direction: column; align-items: center; text-align: center; padding: 1.5rem; }
    .service-icon { margin-bottom: 1rem; }

    .frontend-form { padding: 1.5rem; }
    .form-row .form-group { min-width: 100%; }

    .contact-cards { grid-template-columns: 1fr; }
    .cta-section h2 { 
    font-size: clamp(1.6rem, 4vw, 2.5rem); 
    text-transform: uppercase; 
    letter-spacing: 0.02em; 
    margin-bottom: 2rem; 
}

    .footer-inner { grid-template-columns: 1fr; text-align: center; }
    .footer-logo { margin: 0 auto 1rem; }
    .footer-col.contact-col p { justify-content: center; }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container { width: 100%; padding: 0px 20px !important; }
    .hero h1 { font-size: 1.7rem; }
    .section-header h2 { font-size: 1.5rem; }
    .page-banner h1 { font-size: 1.5rem; }
    .property-price { font-size: 1.2rem; }
}

/* ========================================
   SCROLL ANIMATIONS (Intersection Observer)
   ======================================== */

/* Base state: hidden before animation */
[data-animate] {
    opacity: 0;
    transition-property: opacity, transform;
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    transition-duration: 0.75s;
    transition-delay: 0s;
}

/* Fade up (default) */
[data-animate="fade-up"]   { transform: translateY(40px); }
[data-animate="fade-down"] { transform: translateY(-40px); }
[data-animate="fade-left"] { transform: translateX(50px); }
[data-animate="fade-right"]{ transform: translateX(-50px); }
[data-animate="fade-in"]   { transform: scale(0.96); }
[data-animate="zoom-in"]   { transform: scale(0.88); }

/* Visible state: triggered by JS */
[data-animate].is-visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Stagger delays for grid children */
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }
[data-delay="600"] { transition-delay: 0.6s; }

/* Respect user reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
    [data-animate] { opacity: 1 !important; transform: none !important; transition: none !important; }
}
