/* Global Styles */
:root {
    --primary-color: #0B095B;
    --primary-hover: #293274;
    --secondary-color: #CFAF50;
    --secondary-hover: #EFD89E;
    --terracotta-color: #ED6D1D;
    --terracotta-hover: #F2995C;
    --accent-color: #0B095B;
    --light-color: #f8f9fa;
    --dark-color: #0B095B;
    --text-color: #333;
    --border-radius: 6px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --font-heading: 'Raleway', sans-serif;
    --font-body: 'Raleway', sans-serif;
}

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

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.5;
    color: var(--text-color);
    background-color: #fff;
    font-size: 19px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

section {
    padding: 60px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

h1 { font-size: 64px; }
h2 { font-size: 44px; }
h3 { font-size: 36px; }
h4 { font-size: 25px; }
h5 { font-size: 20px; }

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 14px;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

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

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
}

.btn-terracotta {
    background-color: var(--terracotta-color);
    color: white;
}

.btn-terracotta:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-grey {
    background-color: #6c757d;
    color: white;
}

.btn-grey:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
}

.btn-text {
    color: var(--accent-color);
    padding: 5px 0;
    position: relative;
    background: transparent;
}

.btn-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s;
}

.btn-text:hover::after {
    width: 100%;
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

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

.logo a {
    display: block;
}

.logo img {
    max-height: 50px;
    width: auto;
}

/* Main Navigation */
nav {
    display: flex;
    align-items: center;
    height: 100%;
}

nav ul {
    display: flex;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

nav ul li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    margin-left: 30px;
}

nav ul li a {
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 5px 0;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    white-space: nowrap;
    transition: color 0.3s ease;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--primary-color);
}

/* Page Headers - Black Overlay Instead of Gold */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/images/hero/home-banner.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

.page-header h1, .page-header h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/images/hero/home-banner.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero .container {
    max-width: 1400px;
}

.hero h1, .hero h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 15px 30px;
    font-size: 16px;
}

/* Quick Services Section */
.quick-services {
    background-color: #fff;
}

.quick-services .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.quick-services .service-card {
    padding: 30px;
    text-align: center;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s;
    background-color: #fff;
}

.quick-services .service-card:hover {
    transform: translateY(-5px);
}

.quick-services .service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.quick-services .service-card h4 {
    margin-bottom: 15px;
}

.quick-services .service-card p {
    margin-bottom: 20px;
}

/* Search Section Styles */
.search-section {
    background-color: #fff;
    padding: 60px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-top: -60px;
    position: relative;
    z-index: 10;
    border-radius: 10px;
    margin-left: 30px;
    margin-right: 30px;
}

.search-section .container {
    max-width: 1100px;
}

.search-section h3 {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.search-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
}

.search-form form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: end;
}

.form-group {
    margin-bottom: 5px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
}

.input-with-icon input,
.input-with-icon select {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: var(--font-body);
}

.input-with-icon input:focus,
.input-with-icon select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(1, 38, 96, 0.2);
}

.search-form button {
    padding: 14px 20px;
    width: 100%;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    transition: var(--transition);
}

.search-form button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.search-form button i {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .search-section {
        margin-left: 20px;
        margin-right: 20px;
    }

    .search-form form {
        grid-template-columns: 1fr;
    }
}

/* Section Headers with Icons */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-header h2 i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Online Auctions Section */
.online-auctions {
    background-color: var(--light-color);
}

.online-auctions p {
    font-size: 1.1rem;
    color: #666;
}

.online-auction-intro .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.online-benefits {
    margin: 2rem 0;
}

.online-benefits ul {
    list-style: none;
    margin: 1rem 0;
}

.online-benefits li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.online-benefits i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Video Integration */
.intro-video {
    text-align: center;
}

.video-container {
    position: relative;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.play-button i {
    font-size: 30px;
    color: white;
    margin-left: 5px;
}

.play-button:hover {
    background: var(--secondary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.caption {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Featured Properties Grid */
.featured-properties {
    padding: 80px 0;
}

.featured-properties h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.property-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.property-image {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.property-card:hover .property-image img {
    transform: scale(1.05);
}

.property-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.property-details {
    padding: 1.5rem;
}

.property-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.property-location {
    color: #666;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.property-location i {
    color: var(--primary-color);
}

.property-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.property-date {
    font-size: 0.9rem;
    color: #666;
}

.property-details .btn {
    font-size: 12px;
    padding: 6px 12px;
}

.view-all {
    text-align: center;
    margin-top: 2rem;
}

/* Testimonials */
.testimonials {
    background-color: var(--light-color);
    padding: 80px 0;
}

.testimonials h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.testimonial-content {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

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

/* Footer Styles */
footer {
    background: #0B095B;
    color: white;
    padding: 60px 0 30px;
}

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

.footer-column h4 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.footer-column p {
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: white;
    font-size: 1.2rem;
}

.social-icons a:hover {
    color: var(--secondary-color);
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    line-height: 2;
}

.footer-column ul li a:hover {
    color: white;
}

address p {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.phone {
    font-weight: 600;
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #293274;
    color: #999;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #999;
}

.footer-bottom a:hover {
    color: white;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: white;
    text-align: center;
}

.cta h2, .cta h3 {
    color: white;
    font-size: 44px;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 19px;
    margin-bottom: 2rem;
}

/* Responsive Typography */
@media (max-width: 768px) {
    h1 { font-size: 48px; }
    h2 { font-size: 36px; }
    h3 { font-size: 28px; }
    h4 { font-size: 22px; }
    h5 { font-size: 18px; }
    
    .cta h2, .cta h3 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 36px; }
    h2 { font-size: 28px; }
    h3 { font-size: 24px; }
    h4 { font-size: 20px; }
    h5 { font-size: 18px; }
    
    .cta h2, .cta h3 {
        font-size: 28px;
    }
    
    body {
        font-size: 16px;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .intro-content, .intro-video,
    .consultancy-intro .container,
    .connection-content,
    .connection-image {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    nav ul {
    display: none;
    position: fixed;
        top: 80px;
    left: 0;
    width: 100%;
        background: white;
        flex-direction: column;
        box-shadow: var(--box-shadow);
        z-index: 999;
    }

    nav ul.show {
    display: flex;
    }

    nav ul li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    nav ul li a {
        padding: 15px 20px;
    width: 100%;
    }

    .mobile-menu-btn {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
    background: none;
    border: none;
        padding: 5px;
    }

    .logo img {
        height: 40px;
    }

    .hero {
        padding: 60px 0;
        min-height: 70vh;
    }

    .hero h1, .hero h2 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    align-items: center;
        gap: 0.5rem;
    }

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

    .page-header {
        padding: 60px 0 40px;
    }

    .page-header h1, .page-header h2 {
        font-size: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
    gap: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .online-auction-intro .container,
    .consultancy-intro .intro-image,
    .consultancy-intro .intro-content {
        grid-template-columns: 1fr;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
    display: none;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
}

/* Add mobile responsive styles for hero section here */
@media (max-width: 768px) {
    .hero {
        height: auto;
        padding: 80px 0;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

/* Quick Services Section */
.quick-services {
    background-color: #fff;
}

.quick-services .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.quick-services .service-card {
    padding: 30px;
    text-align: center;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s;
    background-color: #fff;
}

.quick-services .service-card:hover {
    transform: translateY(-5px);
}

.quick-services .service-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.quick-services .service-card h4 {
    margin-bottom: 15px;
}

.quick-services .service-card p {
    margin-bottom: 20px;
}

/* Search Section Styles */
.search-section {
    background-color: #fff;
    padding: 60px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-top: -60px;
    position: relative;
    z-index: 10;
    border-radius: 10px;
    margin-left: 30px;
    margin-right: 30px;
}

.search-section .container {
    max-width: 1100px;
}

.search-section h3 {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.search-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
}

.search-form form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: end;
}

.form-group {
    margin-bottom: 5px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
}

.input-with-icon input,
.input-with-icon select {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: var(--font-body);
}

.input-with-icon input:focus,
.input-with-icon select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(1, 38, 96, 0.2);
}

.search-form button {
    padding: 14px 20px;
    width: 100%;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    transition: var(--transition);
}

.search-form button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.search-form button i {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .search-section {
        margin-left: 20px;
        margin-right: 20px;
    }
    
    .search-form form {
        grid-template-columns: 1fr;
    }
}

/* Online Auctions Section */
.online-auctions {
    background-color: #fff;
    text-align: center;
}

.online-auctions p {
    max-width: 800px;
    margin: 0 auto 30px;
}

.online-auction-intro .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.online-benefits {
    margin-top: 30px;
    text-align: left;
}

.online-benefits ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.online-benefits li {
    display: flex;
    align-items: center;
}

.online-benefits i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

.intro-video {
    position: relative;
}

.video-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(231, 76, 60, 0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.play-button i {
    color: #fff;
    font-size: 2rem;
}

.play-button:hover {
    background-color: rgba(192, 57, 43, 0.8);
}

.caption {
    margin-top: 15px;
    font-style: italic;
    opacity: 0.8;
}

/* How it Works Section */
.how-it-works {
    background-color: var(--light-color);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 10px;
}

/* Upcoming Online Auctions Section */
.upcoming-online-auctions {
    background-color: #fff;
}

.loading-spinner {
    text-align: center;
    padding: 40px 0;
}

.loading-spinner i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.loading-spinner p {
    color: #666;
    font-size: 1.1rem;
}

.error, .no-results {
    text-align: center;
    padding: 40px 0;
    color: var(--text-color);
}

.error {
    color: var(--secondary-color);
}

.no-results {
    color: #666;
}

/* Auction Alerts Section */
.auction-alerts {
    background-color: var(--primary-color);
    color: #fff;
}

.auction-alerts h3, .auction-alerts h4 {
    color: #fff;
}

.alert-features {
    margin: 30px 0;
}

.alert-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.alert-features i {
    margin-right: 15px;
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.alert-form {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    color: var(--text-color);
    box-shadow: var(--box-shadow);
    margin-top: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

/* Featured Properties Section */
.featured-properties {
    background-color: var(--light-color);
    padding: 80px 0;
}

.featured-properties h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.property-grid {
        display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 30px;
    margin-bottom: 50px;
}

.property-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.property-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.property-card:hover .property-image img {
    gap: 10px;
}

.auth-help .contact-info div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.auth-help .contact-info i {
    color: var(--secondary-color);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .auth-content {
        grid-template-columns: 1fr;
    }
    
    .auth-info {
        order: -1;
    }
}

@media (max-width: 576px) {
    .auth-form-container, 
    .auth-info {
        padding: 30px 20px;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .auth-help {
        padding: 20px;
    }
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.hero-buttons .btn-primary {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

.hero-buttons .btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

/* Hero contact section */
.hero-contact {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 15px 25px;
    border-radius: 8px;
    display: inline-block;
}

.hero-contact p {
    font-size: 1rem;
    margin-bottom: 5px;
}

.hero-contact .phone {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Quick Services Section */
.quick-services {
    background-color: #fff;
} 