/* === Runabell Holdings — Main Stylesheet === */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy: #1A237E;
    --navy-dark: #0D1642;
    --navy-light: #283593;
    --gold: #C9A227;
    --gold-light: #D4B94A;
    --text: #333333;
    --text-light: #666666;
    --bg: #FAFAFA;
    --white: #FFFFFF;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 16px rgba(0,0,0,0.15);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: 0.3s ease;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.3; }
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }

a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-dark); color: var(--white); transform: translateY(-1px); }

.btn-hero { background: var(--gold); color: #1a1a1a; font-size: 1.1rem; padding: 16px 40px; }
.btn-hero:hover { background: var(--gold-light); color: #1a1a1a; transform: translateY(-2px); box-shadow: var(--shadow-hover); }

.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); padding: 12px 30px; }
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-full { width: 100%; }

/* Navigation */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: all var(--transition);
}

.nav-container {
    max-width: 1100px; margin: 0 auto; padding: 0 20px;
    display: flex; align-items: center; justify-content: space-between; height: 64px;
}

.nav-brand {
    font-family: var(--font-display);
    font-size: 1.3rem; font-weight: 700; color: var(--navy-dark);
}
.nav-brand:hover { color: var(--navy); }

.nav-links { display: flex; list-style: none; align-items: center; gap: 30px; }
.nav-links a { color: var(--text); font-weight: 500; font-size: 0.95rem; }
.nav-links a:hover { color: var(--navy); }

.nav-cta {
    background: var(--navy); color: var(--white) !important;
    padding: 8px 20px; border-radius: var(--radius);
}
.nav-cta:hover { background: var(--navy-dark); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; transition: var(--transition); }

/* Hero */
.hero {
    position: relative; min-height: 90vh;
    display: flex; align-items: center; justify-content: center; text-align: center;
    color: var(--white);
    background: linear-gradient(135deg, #0D1642 0%, #1A237E 50%, #283593 100%);
}
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.2) 100%); }
.hero-content { position: relative; z-index: 2; padding: 20px; max-width: 700px; }
.hero-title { font-size: 3.5rem; font-weight: 700; margin-bottom: 15px; color: var(--white); }
.hero-subtitle { font-size: 1.4rem; font-weight: 300; margin-bottom: 10px; color: var(--gold); }
.hero-tagline { font-size: 1.1rem; opacity: 0.9; margin-bottom: 35px; }

/* Sections */
.section { padding: 80px 0; }
.section-light { background: var(--white); }
.section-navy { background: var(--navy); color: var(--white); }
.section-cta { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); color: var(--white); padding: 60px 0; }

.section-title { text-align: center; margin-bottom: 15px; }
.section-title.light { color: var(--white); }
.section-subtitle { text-align: center; color: var(--text-light); font-size: 1.1rem; margin-bottom: 50px; }

.page-header {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    color: var(--white); padding: 120px 0 50px; text-align: center;
}
.page-header h1 { color: var(--white); margin-bottom: 10px; }
.page-header p { color: rgba(255,255,255,0.8); font-size: 1.1rem; }

/* Benefits */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; }
.benefit-card {
    background: rgba(255,255,255,0.1); border-radius: var(--radius-lg);
    padding: 30px; text-align: center; transition: transform var(--transition);
}
.section-navy .benefit-card h3 { color: var(--white); }
.section-navy .benefit-card p { color: rgba(255,255,255,0.8); }
.benefit-card:hover { transform: translateY(-4px); }
.benefit-icon { font-size: 2.5rem; margin-bottom: 15px; }
.benefit-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.benefit-card p { font-size: 0.95rem; }

/* Property Cards */
.properties-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 30px; }

.property-card {
    background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition);
}
.property-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.property-image {
    height: 220px; background: #e0e0e0; position: relative;
    background-size: cover; background-position: center;
}
.property-badge {
    position: absolute; top: 15px; left: 15px;
    background: var(--gold); color: #1a1a1a; padding: 4px 12px;
    border-radius: 4px; font-size: 0.8rem; font-weight: 600;
}

.property-info { padding: 20px; }
.property-info h3 { margin-bottom: 5px; }
.property-location { color: var(--text-light); font-size: 0.9rem; margin-bottom: 8px; }
.property-tagline { color: var(--text-light); font-size: 0.95rem; margin-bottom: 15px; }

.property-specs {
    display: flex; gap: 15px; margin-bottom: 20px;
    font-size: 0.9rem; color: var(--text-light);
}
.property-specs span { padding: 4px 10px; background: var(--bg); border-radius: 4px; }

.property-actions { display: flex; gap: 10px; }
.property-actions .btn { padding: 10px 20px; font-size: 0.9rem; flex: 1; }

/* Value Cards */
.value-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; margin-top: 30px; }
.value-card { background: var(--white); border-radius: var(--radius-lg); padding: 25px; box-shadow: var(--shadow); }
.value-card h3 { color: var(--navy); margin-bottom: 10px; }
.value-card p { color: var(--text-light); font-size: 0.95rem; }

/* Contact Form */
.contact-form { background: var(--white); padding: 30px; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.95rem; }
.form-group input, .form-group textarea {
    width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: var(--radius);
    font-family: var(--font-body); font-size: 1rem; transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--navy); }

.form-status { margin-top: 15px; text-align: center; font-size: 0.95rem; }
.form-status.success { color: #2E7D32; }
.form-status.error { color: #c62828; }

/* Legal */
.legal-content { max-width: 700px; margin: 0 auto; }
.legal-content h2 { margin: 30px 0 15px; font-size: 1.5rem; color: var(--navy-dark); }
.legal-content p, .legal-content li { margin-bottom: 10px; }
.legal-content ul { padding-left: 20px; }

/* Footer */
.site-footer { background: #1a1a1a; color: #ccc; padding: 50px 0 30px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-bottom: 30px; }
.footer-col h4 { color: var(--white); margin-bottom: 15px; font-size: 1rem; }
.footer-col p { font-size: 0.9rem; line-height: 1.6; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: #ccc; font-size: 0.9rem; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid #333; padding-top: 20px; text-align: center; font-size: 0.85rem; color: #888; }

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    .section { padding: 50px 0; }
    .page-header { padding: 100px 0 40px; }
    .hero-title { font-size: 2.5rem; }

    .nav-toggle { display: block; }
    .nav-links {
        display: none; position: absolute; top: 64px; left: 0; right: 0;
        background: var(--white); flex-direction: column; padding: 20px; gap: 15px;
        box-shadow: var(--shadow);
    }
    .nav-links.active { display: flex; }

    .properties-grid { grid-template-columns: 1fr; }
    .property-actions { flex-direction: column; }
}
