:root {
    --section-spacing: 4rem;

    /* Brand Colors (from logo) */
    --brand-primary: #1f5ab0;        /* Deep Royal Blue - primary brand color */
    --brand-secondary: #348fd5;      /* Sky Blue - secondary brand accent */
    --brand-accent: #f7bd00;         /* Bright Gold - accent/highlight color */
    --brand-neutral: #a0a0a0;        /* Silver Gray - secondary text */

    /* Interactive Colors */
    --primary-hover: #1a4e9a;        /* Hover state for primary elements */
    --secondary-hover: #024185;      /* Darker hover state */

    /* Text Colors */
    --text-primary: #1f2937;         /* Primary text - headings, important content */
    --text-secondary: #4b5563;       /* Secondary text - body text, descriptions */
    --text-tertiary: #6b7280;        /* Tertiary text - captions, muted content */
    --text-dark: #333;               /* Dark text for navigation */

    /* Background Colors */
    --bg-primary: #fff;              /* Primary background - white */
    --bg-secondary: #f9fafb;         /* Secondary background - light gray */
    --bg-dark: #1f2937;              /* Dark background - footer */

    /* Footer Colors */
    --footer-text-light: #f3f4f6;    /* Light text in footer */
    --footer-text-muted: #9ca3af;    /* Muted text in footer */
    --footer-links: #d1d5db;         /* Footer link color */
    --footer-border: #374151;        /* Footer border color */

    /* Form & UI Colors */
    --border-light: #e5e7eb;         /* Light borders for forms */
}

/* Top Banner */
.top-banner {
    background: var(--bg-dark);
    color: var(--footer-text-light);
    padding: 12px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
    font-size: 0.95rem;
    text-align: center;
}

.top-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-banner p {
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.01em;
}

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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: Arial, sans-serif;
    font-weight: 800;
    color: var(--brand-primary);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(249, 250, 251, 0.90);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 44px;
    width: 100%;
    z-index: 1000;
    pointer-events: auto;
    transition: background-color 1s ease, backdrop-filter 1s ease;
}

.nav-container {
    width: 100%;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 120px;
}

.nav-logo a {
    display: block;
    transition: opacity 0.3s;
}

.nav-logo a:hover {
    opacity: 0.8;
}

.nav-logo img {
    height: 75px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--brand-primary);
}

.nav-menu a.active {
    color: var(--brand-primary);
    position: relative;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--brand-primary);
}

.nav-menu a.cta-button {
    background: var(--brand-primary) !important;
    color: white !important;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 800;
    text-transform: none !important;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background: var(--primary-hover) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 0;
    margin-top: 44px;
}

.hero-image-container {
    position: relative;
    width: 100%;
    margin-bottom: 0;
}

.hero-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 40%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 40px 20px;
}

.hero-overlay h1 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin: 0;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-content {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-tertiary);
    line-height: 1.6;
    text-align: left;
    margin: 0;
}

.hero-cta {
    display: inline-block;
    background: var(--brand-primary);
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s;
    text-align: center;
    justify-self: center;
}

.hero-cta:hover {
    background: var(--primary-hover);
}

/* About Section */
.about {
    padding: var(--section-spacing) 0;
    background: var(--bg-secondary);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-intro {
    font-size: 1.2rem;
    color: var(--text-tertiary);
    text-align: left;
    margin-bottom: 30px;
}

.property-list {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    padding-left: 20px;
}

.property-list li {
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.about p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: left;
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    position: relative;
    z-index: 3;
}

.about h2 {
    font-size: 3rem;
    color: var(--brand-primary);
    margin-bottom: 50px;
    text-align: left;
    position: relative;
    z-index: 2;
}

.compass-bg {
    position: absolute;
    height: 600px;
    width: auto;
    opacity: 0.10;
    top: 50%;
    left: 5vw;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
}

/* Services Section */
.services {
    padding: var(--section-spacing) 0;
}

.services h2 {
    font-size: 3rem;
    color: var(--brand-primary);
    margin-bottom: 20px;
    text-align: left;
}

.services-intro {
    font-size: 1.2rem;
    color: var(--text-tertiary);
    text-align: left;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.service-card {
    background: white;
    padding: 40px 60px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-icon {
    font-size: 3.5rem;
    color: var(--brand-primary);
    margin-bottom: 25px;
    text-align: center;
}

.service-card h3 {
    font-size: 1.68rem;
    color: var(--brand-primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card ul {
    margin-bottom: 20px;
    padding-left: 0;
    list-style: none;
}

.service-card li {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.service-card li:before {
    content: '•';
    color: var(--brand-primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-card p:last-child {
    margin-bottom: 0;
}

.service-card .service-cta {
    display: inline-block;
    color: var(--brand-primary);
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.3rem;
    transition: background-color 0.3s;
    text-align: center;
    justify-self: center;
}
/* Call to Action Banner */
.cta-banner {
    background: var(--brand-primary);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner-logo {
    position: absolute;
    top: 20px;
    right: 25%;
    height: auto;
    width: 25vw;
    z-index: 1;
    pointer-events: none;
    mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
}

.cta-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.cta-text {
    text-align: left;
    flex: 1;
}

.cta-question {
    color: var(--footer-text-light);
    font-size: 1.2rem;
    margin: 0 0 8px 0;
    font-weight: 400;
}

.cta-message {
    color: var(--footer-text-light);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.cta-phone {
    color: var(--brand-accent);
    text-decoration: none;
    font-weight: 700;
}

.cta-phone:hover {
    text-decoration: underline;
}

.cta-button-banner {
    background: var(--brand-secondary);
    color: white;
    padding: 18px 36px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.cta-button-banner:hover {
    background: var(--primary-hover);
}
    
/* Areas Section */
.areas {
    padding: var(--section-spacing) 0;
    background: var(--bg-secondary);
}

.areas h2 {
    font-size: 3rem;
    color: var(--brand-primary);
    margin-bottom: 50px;
    text-align: left;
}

.areas-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.areas-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: 8px 8px 12px rgba(0,0,0,0.15);
}

.areas-text p {
    font-size: 1.2rem;
    color: var(--text-tertiary);
    text-align: left;
    margin-bottom: 30px;
    line-height: 1.6;
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
}

.areas-list span {
    background: white;
    padding: 12px 20px;
    border-radius: 25px;
    color: var(--text-secondary);
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: background-color 0.3s, color 0.3s;
}

.areas-list span:hover {
    background: var(--primary-hover);
    color: white;
}

/* Contact Section */
.contact {
    padding: var(--section-spacing) 0;
}

.contact h2 {
    font-size: 3rem;
    color: var(--brand-primary);
    margin-bottom: 20px;
    text-align: left;
}

.contact > .container > p {
    font-size: 1.2rem;
    color: var(--text-tertiary);
    text-align: left;
    margin-bottom: 60px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-item a {
    color: var(--brand-primary);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-form-section h3 {
    font-size: 1.8rem;
    color: var(--brand-primary);
    margin-bottom: 30px;
    text-align: left;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--brand-primary);
}

.contact-form button {
    background: var(--brand-primary);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 50%;
    margin: 0 auto;
}

.contact-form button:hover {
    background: var(--primary-hover);
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    color: var(--text-dark);
    padding: var(--section-spacing) 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}

.footer-logo img {
    width: 502px;
    height: 273px;
    margin-bottom: 15px;
}

.footer-service-areas h2 {
    color: var(--brand-primary);
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-align: left;
}

.footer-service-areas p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
    text-align: left;
}

.footer-logo {
    text-align: center;
}

.tagline {
    color: var(--text-secondary);
    font-style: italic;
    text-align: center;
    margin-top: 10px;
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--brand-primary);
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-secondary);
}

/* Mobile Responsive */
@media (max-width: 840px) {
    .top-banner {
        font-size: 0.85rem;
        padding: 10px 0;
    }

    .top-banner p {
        line-height: 1.3;
    }

    .navbar {
        top: 40px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 120px;
        flex-direction: column;
        background-color: rgba(249, 250, 251, 0.90);
        backdrop-filter: blur(15px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 30px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        margin-top: 100px;
    }

    .hero-overlay {
        height: 35%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.65) 40%, transparent 100%);
        padding: 30px 20px;
    }

    .hero-overlay h1 {
        font-size: 2.4rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-content p {
        text-align: center;
    }
    
    .hero-cta {
        justify-self: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .areas-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .areas-list {
        justify-content: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .cta-text {
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-service-areas h2,
    .footer-service-areas p {
        text-align: center;
    }
    
    .footer-logo img {
        width: 100%;
        max-width: 400px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .hero-overlay {
        height: 40%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.7) 40%, transparent 100%);
        padding: 25px 15px;
    }

    .hero-overlay h1 {
        font-size: 2.1rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }
    
    .about h2,
    .services h2,
    .areas h2,
    .contact h2 {
        font-size: 2.4rem;
    }
    
}