/* O'Riordan Bond - Old Website Rebuild
 * Colours: Green #004f32, Yellow #fab600
 * Font: Open Sans only
 */

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

a {
    color: #004f32;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #fab600;
}

.valpal-banner-link {
    display: block;
    margin-bottom: 20px;
}

.valpal-banner-link img {
    width: 100%;
    max-width: 900px;
    height: auto;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', Arial, sans-serif;
}

/* Utility Classes */
.container {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.text-white {
    color: #fff;
}

/* Property Price - Green */
.property-price {
    font-size: 24px;
    font-weight: 700;
    color: #004f32;
    margin-bottom: 25px;
}

/* Property Description Heading - Green */
.property-description h2 {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 20px;
    color: #004f32;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Quick Summary Heading - Green */
.property-summary h3 {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 20px;
    color: #004f32;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Map Heading - Green */
.property-map h3 {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 20px;
    color: #004f32;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Contact Agent Heading - Green */
.contact-agent h3 {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 20px;
    color: #004f32;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Property Documents Buttons */
.property-documents {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.doc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #004f32;
    color: #fff;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.doc-btn:hover {
    background: #003d27;
    color: #fff;
}

.doc-btn i {
    font-size: 16px;
}

/* ===================
   HEADER STYLES 
   =================== */
.site-header {
    background: #004f32;
    position: relative;
    z-index: 1000;
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 30px;
}

.logo img {
    height: 35px;
    width: auto;
}

/* Main Navigation - Same line as logo */
.main-nav {
    flex: 1;
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 0;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    display: block;
    padding: 12px 18px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
        text-transform: uppercase;
}

.follow-text {
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-nav a:hover,
.main-nav li.active > a {
    color: #fab600;
}

/* Dropdown Menu */
.main-nav .dropdown {
    position: relative;
}

.main-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #004f32;
    min-width: 220px;
    display: none;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.main-nav .dropdown:hover .dropdown-menu {
    display: block;
}

.main-nav .dropdown-menu a {
    padding: 10px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.main-nav .dropdown-menu a:hover {
    background: #fab600;
    color: #004f32;
}

/* Social Links in Header */
.social-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-links a {
    color: #fff;
    font-size: 16px;
    transition: color 0.2s;
}

.social-links a:hover {
    color: #fab600;
}

/* Yellow accent bar under header */
.header-accent {
    height: 12px;
    background: #fab600;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

/* ===================
   HERO SECTION 
   =================== */
.hero {
    position: relative;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

/* ValPal Banner */
.valpal-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #004f32;
    padding: 15px 30px;
    border-radius: 0;
    margin-bottom: 20px;
    gap: 20px;
}

.valpal-banner .icon {
    width: 50px;
    height: 50px;
}

.valpal-banner .text {
    color: #fff;
    font-size: 22px;
    font-style: italic;
}

.valpal-banner .text strong {
    color: #fab600;
    font-style: normal;
}

.valpal-banner .btn-click {
    background: #fab600;
    color: #004f32;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

/* Valuation Buttons */
.valuation-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 25px;
}

.valuation-buttons .btn {
    background: #004f32;
    color: #fff;
    padding: 14px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.valuation-buttons .btn:hover {
    background: #003d27;
}

/* Property Search Box */
.search-box {
    display: flex;
    max-width: 700px;
    margin: 0 auto;
}

.search-box input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    font-size: 15px;
    font-family: 'Open Sans', Arial, sans-serif;
    outline: none;
}

.search-box input::placeholder {
    color: #999;
}

.search-box .btn-search {
    background: #004f32;
    color: #fff;
    padding: 15px 40px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
}

.search-box .btn-search:hover {
    background: #003d27;
}

/* ===================
   TWO COLUMN SECTIONS 
   =================== */
.two-col-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.col-text {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.col-text.bg-dark {
    background: #2d2d2d;
    color: #fff;
}

.col-text h2 {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.col-text .subtitle {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.col-text p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.col-image {
    background-size: cover;
    background-position: center;
    min-height: 350px;
}

/* ===================
   CTA SECTIONS 
   =================== */
.cta-section {
    padding: 60px 20px;
    text-align: center;
}

.cta-section.bg-white {
    background: #fff;
}

.cta-section h2 {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 36px;
    margin-bottom: 10px;
}

.cta-section .subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 25px;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 25px;
    line-height: 1.7;
}

/* ===================
   BUTTONS 
   =================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    font-family: 'Open Sans', Arial, sans-serif;
}

.btn-primary {
    background: #fab600;
    color: #004f32;
}

.btn-primary:hover {
    background: #e0a400;
    color: #004f32;
}

.btn-dark {
    background: #2d2d2d;
    color: #fff;
}

.btn-dark:hover {
    background: #1a1a1a;
    color: #fff;
}

.btn-green {
    background: #004f32;
    color: #fff;
}

.btn-green:hover {
    background: #003d27;
    color: #fff;
}

/* ===================
   IMAGE WITH TEXT SECTIONS 
   =================== */
.image-text-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
}

.image-text-section .image-col {
    background-size: cover;
    background-position: center;
}

.image-text-section .text-col {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ===================
   BULLET POINTS SECTION 
   =================== */
.difference-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.difference-section .image-col {
    background-size: cover;
    background-position: center;
    min-height: 300px;
}

.difference-section .text-col {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.difference-section h3 {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 24px;
    margin-bottom: 20px;
}

.difference-section ul {
    list-style: none;
    margin-bottom: 25px;
}

.difference-section li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.difference-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #004f32;
}

/* ===================
   TESTIMONIAL SECTION 
   =================== */
.testimonial-section {
    background: #f5f5f5;
    padding: 60px 50px;
}

.testimonial-section blockquote {
    font-size: 18px;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

.testimonial-section cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: #004f32;
}

/* ===================
   FOOTER 
   =================== */
.site-footer {
    background: #f5f5f5;
    padding: 50px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 180px 1fr 1fr 200px;
    gap: 40px;
    padding-bottom: 40px;
    align-items: start;
}

.footer-logo {
    display: flex;
    align-items: flex-start;
}

.footer-logo img {
    max-width: 150px;
}

.footer-section h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #333;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #004f32;
    font-size: 14px;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.footer-accreditations {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.footer-accreditations img {
    max-width: 100%;
    height: auto;
}

.footer-bottom {
    background: #004f32;
    padding: 20px 0;
    color: #fff;
    font-size: 13px;
    text-align: center;
}

.footer-bottom .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-accreditations {
        justify-content: center;
    }
}

.footer-gold-bar {
    height: 5px;
    background: #fab600;
}

/* ===================
   SELLING PAGE 
   =================== */
.selling-hero {
    position: relative;
    height: 350px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.selling-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

.selling-hero-content {
    position: relative;
    z-index: 1;
}
.selling-hero-box {
    border: 3px solid #fff;
    padding: 30px 60px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.selling-hero-box h1 {
    color: #004f32;
    font-size: 36px;
    font-weight: 400;
    margin: 0;
    text-align: center;
}

/* Selling Sections */
.selling-section .two-col-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.selling-section .col-image {
    min-height: 350px;
    background-size: cover;
    background-position: center;
}

.selling-section .col-text {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.selling-section.green-bg .col-text {
    background: #004f32;
    color: #fff;
}

.selling-section.green-bg .col-text h2 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 10px;
}

.selling-section.green-bg .col-text .subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-bottom: 20px;
}

.selling-section.green-bg .col-text p {
    color: rgba(255,255,255,0.85);
    max-width: 400px;
}

.selling-section.white-bg .col-text {
    background: #fff;
}

.selling-section.white-bg .col-text h2 {
    color: #004f32;
    font-size: 32px;
    margin-bottom: 10px;
}

.selling-section.white-bg .col-text .subtitle {
    color: #666;
    font-size: 18px;
    margin-bottom: 20px;
}

.selling-section.white-bg .col-text p {
    color: #666;
    max-width: 400px;
}

.selling-text-right .btn {
    width: auto;
    margin-top: 10px;
}

/* Selling Stats */
.selling-stats {
    background: #f5f5f5;
    padding: 25px 0;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    font-size: 14px;
    color: #333;
}

@media (max-width: 768px) {
    .selling-section .two-col-section {
        grid-template-columns: 1fr;
    }
    
    .selling-section .col-image {
        min-height: 250px;
    }
    
    .selling-hero-box {
        padding: 20px 30px;
    }
    
    .selling-hero-box h1 {
        font-size: 26px;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}
/* ===================
   PAGE HEADERS 
   =================== */
.page-header {
    background: #004f32;
    padding: 15px 0;
}

.page-header .breadcrumb {
    color: #fff;
    font-size: 14px;
}

.page-header .breadcrumb a {
    color: #fab600;
}

.page-title {
    background: #fab600;
    padding: 8px 0;
}

.page-title h1 {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 24px;
    color: #004f32;
    margin: 0;
    font-weight: 700;
}

/* ===================
   PAGE CONTENT 
   =================== */
.page-content {
    padding: 40px 0;
}

.page-content h2 {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 28px;
    color: #fab600;
    margin-bottom: 10px;
    font-weight: 700;
}

.page-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.page-content p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.content-block {
    margin-bottom: 40px;
}

.content-block.text-right {
    text-align: right;
}

/* ===================
   SERVICES GRID 
   =================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    text-align: center;
    padding: 30px 20px;
}

.service-card .icon {
    width: 60px;
    height: 60px;
    background: #004f32;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 24px;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #004f32;
}

.service-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ===================
   BRANCHES GRID 
   =================== */
.branches-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.branch-card {
    border: 1px solid #eee;
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.branch-card .placeholder-img {
    height: 150px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.branch-card .branch-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.branch-card .content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.branch-card h3 {
    font-size: 16px;
    color: #004f32;
    margin-bottom: 10px;
    font-weight: 700;
}

.branch-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 5px;
}

.branch-card .email {
    color: #004f32;
    word-break: break-all;
}

.branch-card .btn-enquire {
    display: inline-block;
    background: #fab600;
    color: #004f32;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: auto;
    text-align: center;
}

.branch-card .btn-enquire:hover {
    background: #e0a400;
}

/* ===================
   NEWS GRID 
   =================== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.news-item {
    padding: 25px;
    background: #f9f9f9;
}

.news-item h3 {
    font-size: 20px;
    color: #004f32;
    margin-bottom: 15px;
}

.news-item p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* ===================
   CONTACT PAGE 
   =================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form h2 {
    color: #fab600;
    margin-bottom: 25px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    font-size: 14px;
    font-family: 'Open Sans', Arial, sans-serif;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.contact-form .form-check input {
    width: auto;
    margin-top: 3px;
}

.contact-form .form-check label {
    font-size: 13px;
    margin-bottom: 0;
}

.contact-info h2 {
    color: #fab600;
    margin-bottom: 25px;
}

/* ===================
   TENANT IFRAME 
   =================== */
.tenant-iframe-container {
    width: 100%;
    min-height: 600px;
}

.tenant-iframe-container iframe {
    width: 100%;
    height: 600px;
    border: none;
}

/* ===================
   PROPERTY SEARCH SIDEBAR 
   =================== */
.property-search-sidebar {
    background: #f5f5f5;
    padding: 25px;
}

.property-search-sidebar h3 {
    font-size: 18px;
    color: #004f32;
    margin-bottom: 10px;
}

.property-search-sidebar > p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.property-search-sidebar .btn-type {
    display: block;
    background: #fab600;
    color: #004f32;
    padding: 12px 20px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}

.property-search-form .filter-group {
    margin-bottom: 15px;
}

.property-search-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.property-search-form input,
.property-search-form select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    font-size: 14px;
    font-family: 'Open Sans', Arial, sans-serif;
}

.property-search-form .filter-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* ===================
   PROPERTY LISTING PAGE 
   =================== */
.property-listing-page {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    padding: 40px 0;
}

.property-results {
    background: #fff;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.results-header .sort-by {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.results-header select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    font-family: 'Open Sans', Arial, sans-serif;
}

/* Property Cards */

.property-card .meta .icon,
.property-card .meta i {
    color: #004f32;
}

.property-card .location {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}

.property-card .location .icon,
.property-card .location i {
    color: #004f32;
}

.property-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    border: 1px solid #eee;
    margin-bottom: 20px;
    background: #fff;
    min-height: 220px;
}

.property-card .image {
    height: 100%;
    min-height: 220px;
    background: #f0f0f0;
    background-size: cover;
    background-position: center;
}

.property-card .details {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.property-card h3 {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 700;
}

.property-card .price {
    font-size: 20px;
    font-weight: 400;
    color: #004f32;
    margin-bottom: 10px;
}

.property-card .description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.property-card .meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #333;
}

.property-card .meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.property-card .meta i {
    color: #004f32;
}

.property-card .btn-read-more {
    display: inline-block;
    background: #004f32;
    color: #fff;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: auto;
    width: fit-content;
}

.property-card .btn-read-more:hover {
    background: #003d27;
    color: #fff;
}

/* ===================
   SINGLE PROPERTY PAGE 
   =================== */
   
   /* ===================
   PROPERTY LISTING LAYOUT 
   =================== */
.property-listing-page {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    padding: 40px 0;
}

/* Property Cards */
.property-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    border: 1px solid #eee;
    margin-bottom: 20px;
    background: #fff;
    min-height: 220px;
}

.property-card .image {
    height: 100%;
    min-height: 220px;
    background: #f0f0f0;
    background-size: cover;
    background-position: center;
}

.property-card .details {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.property-card h3 {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 700;
}

.property-card .price {
    font-size: 20px;
    font-weight: 400;
    color: #004f32;
    margin-bottom: 10px;
}

.property-card .description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.property-card .meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #333;
}

.property-card .meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.property-card .meta i {
    color: #004f32;
}

.property-card .btn-read-more {
    display: inline-block;
    background: #004f32;
    color: #fff;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: auto;
    width: fit-content;
}

.property-card .btn-read-more:hover {
    background: #003d27;
    color: #fff;
}

/* ===================
   PROPERTY DETAIL PAGE LAYOUT 
   =================== */
.property-detail-page {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
}

.property-detail-content {
    min-width: 0;
}

.property-detail-content h1 {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 26px;
    color: #004f32;
    margin-bottom: 25px;
    font-weight: 700;
}

/* Smaller thumbnails */
.property-gallery .thumbnails {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.property-gallery .thumb {
    width: 80px;
    height: 60px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.7;
    transition: all 0.2s;
}

.property-gallery .thumb:hover {
    opacity: 1;
}

.property-gallery .thumb.active {
    border-color: #fab600;
    opacity: 1;
}

/* Related properties using same card style */
.related-properties {
    margin-top: 50px;
    padding-top: 35px;
    border-top: 1px solid #eee;
}

.related-properties h3 {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 20px;
    color: #fab600;
    margin-bottom: 25px;
    font-weight: 700;
}

.related-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px;
}

.related-grid .property-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    border: 1px solid #eee;
    background: #fff;
    min-height: 200px;
    margin-bottom: 0;
}

/* EPC Section */
.property-epc {
    margin-bottom: 35px;
}

.property-epc h3 {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 20px;
    color: #004f32;
    margin-bottom: 15px;
    font-weight: 700;
}

.property-epc img {
    max-width: 100%;
    height: auto;
}

.related-grid .property-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    border: 1px solid #eee;
    background: #fff;
    min-height: 200px;
    margin-bottom: 0;
}

.related-grid .property-card .image {
    height: 100%;
    min-height: 200px;
    background-size: cover;
    background-position: center;
}

.related-grid .property-card .details {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.related-grid .property-card h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 700;
}

.related-grid .property-card .price {
    font-size: 20px;
    font-weight: 400;
    color: #004f32;
    margin-bottom: 10px;
}

.related-grid .property-card .description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-grid .property-card .meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #333;
}

.related-grid .property-card .meta i {
    color: #004f32;
}

.related-grid .property-card .btn-read-more {
    display: inline-block;
    background: #004f32;
    color: #fff;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: auto;
    width: fit-content;
}

.related-grid .property-card .btn-read-more:hover {
    background: #003d27;
    color: #fff;
}

/* ===================
   HOMEPAGE SECTIONS 
   =================== */

/* Time to Take Action */
.time-to-action .action-text {
    background: #154f31;
    color: #fff;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.time-to-action .action-text h2 {
    color: #fff;
}

.time-to-action .action-text .subtitle {
    color: rgba(255,255,255,0.9);
}

.time-to-action .action-text p {
    text-align: center;
}

.over-25-years .years-text {
    background: #f5f5f5;
    text-align: center;
    align-items: center;
}

.over-25-years .years-text h2 {
    color: #004f32;
}

.over-25-years .years-text .subtitle {
    color: #666;
}

.over-25-years .years-text .btn {
    width: auto;
}

/* Difference + Testimonial */
.difference-testimonial .difference-text {
    background: url('/media/review_orb_image_faded.jpg') center center no-repeat;
    background-size: cover;
    position: relative;
    text-align: center;
    align-items: center;
}

.difference-testimonial .difference-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.92);
}

.difference-testimonial .difference-text h2,
.difference-testimonial .difference-text ul,
.difference-testimonial .difference-text .btn {
    position: relative;
    z-index: 1;
}

.difference-testimonial .difference-text h2 {
    color: #004f32;
}

.difference-testimonial .difference-text ul {
    list-style: none;
    margin-bottom: 25px;
    display: inline-block;
    text-align: left;
}

.difference-testimonial .difference-text li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.difference-testimonial .difference-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #fab600;
    font-weight: bold;
}

.difference-testimonial .difference-text .btn {
    width: auto;
}
/* Testimonial Column */
.difference-testimonial .testimonial-col {
    background: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=800&q=80') center center no-repeat;
    background-size: cover;
    position: relative;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.difference-testimonial .testimonial-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.difference-testimonial .testimonial-col blockquote,
.difference-testimonial .testimonial-col cite {
    position: relative;
    z-index: 1;
}

.difference-testimonial .testimonial-col blockquote {
    font-size: 18px;
    font-style: italic;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.difference-testimonial .testimonial-col cite {
    font-style: normal;
    font-weight: 600;
    color: #004f32;
}

/* ValPal Banner Link */
.valpal-banner-link {
    display: block;
    margin-bottom: 20px;
}

.valpal-banner-link img {
    width: 100%;
    max-width: 900px;
    height: auto;
}

/* Follow us text */
.follow-text {
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===================
   RESPONSIVE UPDATES 
   =================== */
@media (max-width: 1024px) {
    .property-listing-page {
        grid-template-columns: 1fr;
    }
    
    .property-search-sidebar {
        order: -1;
    }
    
    .property-detail-page {
        grid-template-columns: 1fr;
    }
    
    .property-detail-page .property-search-sidebar {
        order: 2;
    }
    
    .property-card {
        grid-template-columns: 250px 1fr;
    }
    
    .related-grid .property-card {
        grid-template-columns: 1fr;
    }
    
    .related-grid .property-card .image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .property-card {
        grid-template-columns: 1fr;
    }
    
    .property-card .image {
        height: 200px;
        min-height: 200px;
    }
}

.property-detail {
    padding: 40px 0;
}

.property-detail h1 {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 26px;
    color: #004f32;
    margin-bottom: 25px;
    font-weight: 700;
}

/* Property Gallery */
.property-gallery {
    margin-bottom: 30px;
}

.property-gallery .main-image {
    width: 100%;
    height: 450px;
    background-size: cover;
    background-position: center;
    margin-bottom: 10px;
    position: relative;
    border-radius: 0;
}

.property-gallery .nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: #fab600;
    color: #004f32;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-gallery .nav-arrow:hover {
    background: #e0a400;
}

.property-gallery .nav-arrow.prev {
    left: 15px;
}

.property-gallery .nav-arrow.next {
    right: 15px;
}

.property-gallery .thumbnails {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.property-gallery .thumb {
    width: 100px;
    height: 75px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.7;
    transition: all 0.2s;
}

.property-gallery .thumb:hover {
    opacity: 1;
}

.property-gallery .thumb.active {
    border-color: #fab600;
    opacity: 1;
}

/* Property Price */
.property-price {
    font-size: 24px;
    font-weight: 700;
    color: #fab600;
    margin-bottom: 25px;
}

/* Property Description */
.property-description {
    margin-bottom: 35px;
}

.property-description h2 {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 20px;
    color: #fab600;
    margin-bottom: 15px;
    font-weight: 700;
}

.property-description p {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

.property-description h3 {
    font-size: 16px;
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Quick Summary Table */
.property-summary {
    background: #f9f9f9;
    padding: 25px;
    margin-bottom: 35px;
}

.property-summary h3 {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 20px;
    color: #fab600;
    margin-bottom: 20px;
    font-weight: 700;
}

.property-summary table {
    width: 100%;
}

.property-summary td {
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}

.property-summary td:first-child {
    color: #004f32;
    font-weight: 600;
    width: 150px;
}

/* Property Map */
.property-map {
    margin-bottom: 35px;
}

.property-map h3 {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 20px;
    color: #fab600;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Contact Agent Section */
.contact-agent {
    margin-bottom: 35px;
}

.contact-agent h3 {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 20px;
    color: #fab600;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-agent p {
    margin-bottom: 15px;
}

/* Related Properties */
.related-properties {
    margin-top: 50px;
    padding-top: 35px;
    border-top: 1px solid #eee;
}

.related-properties h3 {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 20px;
    color: #fab600;
    margin-bottom: 25px;
    font-weight: 700;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.related-card {
    border: 1px solid #eee;
    background: #fff;
}

.related-card .image {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.related-card .details {
    padding: 20px;
}

.related-card .meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    margin-bottom: 10px;
    color: #666;
}

.related-card .meta i {
    color: #004f32;
}

.related-card h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
    font-weight: 700;
}

.related-card .price {
    color: #fab600;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
}

.related-card p {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.5;
}

.related-card .location {
    font-size: 12px;
    color: #999;
    margin-bottom: 15px;
}

.related-card .btn-read-more {
    display: inline-block;
    background: #004f32;
    color: #fff;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.related-card .btn-read-more:hover {
    background: #003d27;
    color: #fff;
}

/* ===================
   SCROLL TO TOP 
   =================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: #fab600;
    color: #004f32;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: none;
    z-index: 1000;
    transition: opacity 0.3s;
}

.scroll-top.visible {
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top:hover {
    background: #e0a400;
}

/* ===================
   RESPONSIVE 
   =================== */
@media (max-width: 1024px) {
    .header-main {
        flex-wrap: wrap;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .branches-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .property-listing-page {
        grid-template-columns: 1fr;
    }
    
    .property-search-sidebar {
        order: -1;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Sticky header on mobile */
    .site-header {
        position: sticky;
        top: 0;
    }
    
    /* Logo left-aligned, 50% smaller */
    .header-main {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        padding: 10px 15px;
        position: relative;
        gap: 15px;
    }
    
    .logo img {
        height: 18px;
    }
    
    .nav-toggle {
        display: block;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .main-nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #004f32;
        padding: 20px;
    }
    
    .main-nav ul.active {
        display: flex;
    }
    
    .main-nav .dropdown-menu {
        position: static;
        box-shadow: none;
        background: rgba(0,0,0,0.1);
    }
    
    .main-nav .dropdown:hover .dropdown-menu {
        display: none;
    }
    
    .main-nav .dropdown.open .dropdown-menu {
        display: block;
    }

    /* Chevron indicator for dropdowns */
    .main-nav .dropdown > a::after {
        content: '\f078';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 10px;
        margin-left: 8px;
        display: inline-block;
        transition: transform 0.3s ease;
        color: #fff;
    }
    
    .main-nav .dropdown.open > a::after {
        transform: rotate(180deg);
    }
    
    .main-nav .dropdown-menu a::after {
        display: none;
    }
    
    .social-links {
        display: none;
    }
    
    .two-col-section,
    .image-text-section,
    .difference-section {
        grid-template-columns: 1fr;
    }
    
    .col-image {
        min-height: 250px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        margin: 0 auto;
        width: fit-content;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .branches-grid {
        grid-template-columns: 1fr;
    }
    
    .valuation-buttons {
        flex-direction: column;
    }
    
    .search-box {
        flex-direction: column;
    }
    
    .property-card {
        grid-template-columns: 1fr;
    }
    
    .property-card .image {
        height: 200px;
    }
    
    .property-gallery .main-image {
        height: 300px;
    }
    
    .property-gallery .thumbnails {
        justify-content: center;
    }
    
    .valpal-banner {
        flex-direction: column;
        text-align: center;
    }
}

/* ===================
   LOADING STATE 
   =================== */
.loading {
    text-align: center;
    padding: 40px;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #004f32;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Placeholder Images */
.placeholder-image {
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
}

/* History page title box */
.history-title-box {
    background: #004f32;
    padding: 30px;
    margin-bottom: 30px;
}

.history-title-box h2 {
    color: #fff;
    margin: 0;
}

.history-content-block {
    background: #2d2d2d;
    color: #fff;
    padding: 30px;
    margin-bottom: 20px;
}

.history-content-block h3 {
    color: #fab600;
    margin-bottom: 15px;
}

.history-content-block p {
    color: #ccc;
}

/* ===================
   HISTORY HERO WITH GLASSMORPHISM 
   =================== */
.history-hero {
    position: relative;
    height: 450px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.history-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 79, 50, 0.5);
}

.history-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 20px;
}

.glassmorphism-box {
    background: rgba(0, 79, 50, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 3px solid #fab600;
    padding: 50px 80px;
    max-width: 600px;
}

.glassmorphism-box h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.glassmorphism-box p {
    color: #fff;
    font-size: 18px;
    margin: 0;
}

/* History Timeline */
.history-timeline {
    margin: 50px 0;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-year {
    flex-shrink: 0;
    width: 100px;
    font-size: 24px;
    font-weight: 700;
    color: #fab600;
}

.timeline-content h3 {
    font-size: 22px;
    color: #004f32;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #666;
    line-height: 1.7;
}

/* History Stats */
.history-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: #004f32;
    padding: 50px;
    margin: 50px 0;
}

.history-stats .stat {
    text-align: center;
    color: #fff;
}

.history-stats .number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #fab600;
}

.history-stats .label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* History Values */
.history-values {
    margin: 50px 0;
}

.history-values h2 {
    text-align: center;
    color: #004f32;
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
}

.value-item i {
    font-size: 40px;
    color: #fab600;
    margin-bottom: 15px;
}

.value-item h4 {
    color: #004f32;
    margin-bottom: 10px;
}

.value-item p {
    font-size: 14px;
    color: #666;
}

.history-cta {
    text-align: center;
    padding: 50px;
    background: #f5f5f5;
    margin-top: 50px;
}

.history-cta h3 {
    color: #004f32;
    margin-bottom: 10px;
}

.history-cta p {
    margin-bottom: 25px;
}

.history-cta .btn {
    margin: 0 10px;
}

/* ===================
   TENANT PAGES STYLES 
   =================== */

/* Intro Box */
.intro-box {
    background: #004f32;
    color: #fff;
    padding: 40px;
    margin-bottom: 40px;
}

.intro-box h2 {
    color: #fab600;
    margin-bottom: 15px;
}

.intro-box p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
}

/* Info Cards Grid */
.info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.info-card {
    background: #f9f9f9;
    padding: 30px;
    border-left: 4px solid #fab600;
}

.info-card .icon {
    width: 50px;
    height: 50px;
    background: #004f32;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
}

.info-card h3 {
    color: #004f32;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Content Section */
.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    color: #004f32;
    margin-bottom: 20px;
}

/* Checklist */
.checklist {
    list-style: none;
    padding: 0;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

.checklist li i {
    color: #004f32;
    font-size: 18px;
}

/* CTA Box */
.cta-box {
    background: #f5f5f5;
    padding: 40px;
    text-align: center;
    margin-top: 40px;
}

.cta-box h3 {
    color: #004f32;
    margin-bottom: 10px;
}

.cta-box p {
    margin-bottom: 25px;
}

.cta-box .btn {
    margin: 0 10px;
}

/* ===================
   EMERGENCY CONTACT STYLES 
   =================== */
.emergency-intro {
    background: #fff8e6;
    border-left: 4px solid #fab600;
    padding: 20px 25px;
    margin-bottom: 40px;
}

.emergency-intro p {
    margin: 0;
}

.emergency-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.emergency-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 30px;
    text-align: center;
    transition: box-shadow 0.2s;
}

.emergency-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.emergency-card.urgent {
    background: #fff8e6;
    border-color: #fab600;
}

.emergency-card .icon {
    width: 60px;
    height: 60px;
    background: #004f32;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    margin: 0 auto 20px;
}

.emergency-card.urgent .icon {
    background: #fab600;
    color: #004f32;
}

.emergency-card h3 {
    color: #004f32;
    margin-bottom: 5px;
}

.emergency-card .area {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.emergency-card .phone {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #fab600;
    margin-bottom: 5px;
}

.emergency-card .phone.secondary {
    font-size: 16px;
}

.emergency-card .note {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
}

.emergency-notice {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #004f32;
    color: #fff;
    padding: 25px 30px;
}

.emergency-notice > i {
    font-size: 24px;
    color: #fab600;
    flex-shrink: 0;
}

.emergency-notice h4 {
    color: #fab600;
    margin-bottom: 5px;
}

.emergency-notice p {
    margin: 0;
    font-size: 14px;
}

.emergency-notice a {
    color: #fab600;
}

/* ===================
   TENANT FEES STYLES 
   =================== */
.fees-intro {
    background: #f5f5f5;
    padding: 25px 30px;
    margin-bottom: 40px;
    border-radius: 0;
}

.fees-intro p {
    margin: 0;
    font-size: 16px;
}

.fees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.fee-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 25px;
}

.fee-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.fee-header i {
    font-size: 24px;
    color: #fab600;
}

.fee-header h3 {
    color: #004f32;
    margin: 0;
    font-size: 18px;
}

.fee-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.download-box {
    display: flex;
    align-items: center;
    gap: 25px;
    background: #004f32;
    color: #fff;
    padding: 30px;
    margin-bottom: 30px;
}

.download-box > i {
    font-size: 40px;
    color: #fab600;
}

.download-box h3 {
    color: #fab600;
    margin-bottom: 5px;
}

.download-box p {
    margin: 0;
    font-size: 14px;
}

.download-box .btn {
    margin-left: auto;
}

.contact-box {
    background: #f5f5f5;
    padding: 30px;
    text-align: center;
}

.contact-box h3 {
    color: #004f32;
    margin-bottom: 10px;
}

.contact-box a {
    color: #004f32;
}

/* ===================
   SERVICES PAGE STYLES 
   =================== */
.services-intro {
    text-align: center;
    margin-bottom: 50px;
}

.services-intro h2 {
    color: #004f32;
    margin-bottom: 15px;
}

.services-intro p {
    max-width: 600px;
    margin: 0 auto;
    color: #666;
}

.services-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.service-card-new {
    background: #fff;
    border: 1px solid #eee;
    padding: 35px 30px;
    transition: all 0.2s;
}

.service-card-new:hover {
    border-color: #fab600;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: #004f32;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 28px;
    color: #fab600;
}

.service-card-new h3 {
    color: #004f32;
    margin-bottom: 15px;
    font-size: 20px;
}

.service-card-new p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    color: #fab600;
    font-weight: 600;
    font-size: 14px;
}

.service-link i {
    margin-left: 5px;
    transition: transform 0.2s;
}

.service-card-new:hover .service-link i {
    transform: translateX(5px);
}

.services-cta {
    text-align: center;
    padding: 50px;
    background: #f5f5f5;
}

.services-cta h3 {
    color: #004f32;
    margin-bottom: 10px;
}

.services-cta p {
    margin-bottom: 25px;
}

.services-cta .btn {
    margin: 0 10px;
}

/* ===================
   RESPONSIVE ADDITIONS 
   =================== */
@media (max-width: 1024px) {
    .history-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .emergency-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fees-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .glassmorphism-box {
        padding: 30px 40px;
    }
    
    .glassmorphism-box h1 {
        font-size: 32px;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .timeline-year {
        width: auto;
    }
    
    .history-stats {
        grid-template-columns: 1fr 1fr;
        padding: 30px;
    }
    
    .history-stats .number {
        font-size: 36px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .emergency-grid {
        grid-template-columns: 1fr;
    }
    
    .fees-grid {
        grid-template-columns: 1fr;
    }
    
    .download-box {
        flex-direction: column;
        text-align: center;
    }
    
    .download-box .btn {
        margin-left: 0;
        margin-top: 20px;
    }
    
    .services-grid-new {
        grid-template-columns: 1fr;
    }
    
    .cta-box .btn,
    .history-cta .btn,
    .services-cta .btn {
        display: block;
        margin: 10px auto;
        max-width: 250px;
    }
}