/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #000080; /* Navy */
    --secondary-color: #bf9447; /* Gold */
    --accent-color: #bf9447;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --gold: #bf9447;
    --navy: #000080;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
}

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

/* Header and Navigation */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding: 0 2rem;
}

.nav-brand {
    flex-shrink: 0;
}

.nav-brand a {
    display: block;
    text-decoration: none;
}

.nav-logo {
    height: 45px !important;
    width: auto !important;
    object-fit: contain !important;
    max-width: 150px !important;
}

.nav-menu-container {
    display: flex;
    align-items: center;
    margin-left: auto;
}

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

.logo h1 {
    color: #2c5aa0;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.tagline {
    color: #666;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #2c5aa0;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1rem;
}

.btn-primary:hover {
    background: var(--navy);
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--navy);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border: 2px solid var(--navy);
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: var(--navy);
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-button {
    background: var(--gold) !important;
    color: var(--navy) !important;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--navy) !important;
    color: var(--gold) !important;
    transform: translateY(-2px);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main content spacing to avoid header overlap */
main {
    padding-top: 70px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #333;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

/* Hero Logo Background Watermark */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 750px;
    height: 375px;
    background-image: url('images/hero-logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Hero Logo Background Watermark */
.hero-logo-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    background-image: url('images/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

.hero-image {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #2c5aa0;
    padding: 16px 32px;
    border: 2px solid #2c5aa0;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

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

.trust-indicators {
    display: flex;
    gap: 2rem;
}

.trust-item {
    text-align: center;
}

.trust-item strong {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.trust-item span {
    color: #666;
    font-size: 0.9rem;
}

/* Service page specific styles */
.service-hero {
    background: linear-gradient(135deg, #000080 0%, #bf9447 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.service-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-hero .subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.service-content {
    padding: 80px 0;
}

.service-intro {
    background: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.service-intro h2 {
    color: #000080;
    margin-bottom: 2rem;
}

.service-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.area-description {
    background: white;
    padding: 60px 0;
    margin: 60px 0;
}

.area-description h2 {
    color: #000080;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2rem;
}

.area-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    color: #333;
}

.area-description .postcode {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000080;
    margin-bottom: 1rem;
}

.service-benefits,
.service-process,
.local-considerations {
    margin: 60px 0;
}

.service-benefits h2,
.service-process h2,
.local-considerations h2 {
    color: #000080;
    margin-bottom: 2rem;
    text-align: center;
}

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

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item h3 {
    color: #bf9447;
    margin-bottom: 1rem;
}

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

.process-step {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    position: relative;
}

.process-step::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #bf9447;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.process-steps {
    counter-reset: step-counter;
}

.local-considerations {
    background: #f8f9fa;
    padding: 60px 0;
}

.local-considerations p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Hero Image Styling */
.hero-image {
    flex: 0 0 75%;
    max-width: 75%;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    max-height: 400px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #fff;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.service-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    overflow: hidden;
}

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

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    transition: transform 0.3s ease;
}

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

.service-logo {
    width: 60px !important;
    height: 60px !important;
    object-fit: contain !important;
    margin: 0 auto !important;
    display: block !important;
    padding: 20px !important;
    background: #f8f9fa;
    border-radius: 50% !important;
}

.service-link {
    display: inline-block;
    background: #000080;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.service-link:hover {
    background: #bf9447;
    transform: translateY(-2px);
}

/* Location Services Navigation */
.location-services-nav {
    background: white;
    padding: 60px 0;
    border-top: 3px solid #bf9447;
}

.location-services-nav h3 {
    text-align: center;
    color: #000080;
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: 700;
}

.service-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-nav-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.service-nav-card:hover {
    background: #000080;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,128,0.2);
    border-color: #bf9447;
}

.service-nav-card h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
    color: inherit;
}

.service-nav-card p {
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.8;
}

.service-nav-card:hover p {
    opacity: 1;
}

@media (max-width: 768px) {
    .service-nav-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .location-services-nav h3 {
        font-size: 1.5rem;
    }
}

/* Area Hover Dropdown Styles */
.area-item {
    position: relative;
    display: inline-block;
}

.area-main-link {
    display: block;
    padding: 8px 12px;
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-weight: 500;
}

.area-main-link:hover {
    background: #000080;
    color: white;
    border-color: #bf9447;
    transform: translateY(-2px);
}

.service-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 2px solid #bf9447;
}

.area-item:hover .service-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.service-dropdown a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid #eee;
}

.service-dropdown a:last-child {
    border-bottom: none;
    border-radius: 0 0 6px 6px;
}

.service-dropdown a:first-child {
    border-radius: 6px 6px 0 0;
}

.service-dropdown a:hover {
    background: #000080;
    color: white;
    padding-left: 20px;
}

/* Ensure dropdowns don't break layout */
.area-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
}

/* Mobile responsive for dropdowns */
@media (max-width: 768px) {
    .service-dropdown {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        min-width: 280px;
        max-width: 90vw;
    }
    
    .area-item:hover .service-dropdown {
        transform: translate(-50%, -50%);
    }
    
    .service-dropdown::before {
        content: '✕';
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 1.2rem;
        color: #999;
        cursor: pointer;
    }
}

.nav-brand .logo {
    height: 15px !important;
    width: auto !important;
    object-fit: contain !important;
    max-width: 30px !important;
    max-height: 15px !important;
}

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

.service-content {
    padding: 2rem;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--text-color);
}

.service-link {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
    font-weight: 600;
}

.service-link:hover {
    background: var(--secondary-color);
}

/* Areas Section */
.areas {
    padding: 80px 0;
    background: #f8f9fa;
}

.areas h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

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

.area-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
}

.area-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.area-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.5rem;
}

.area-links a {
    color: var(--text-color);
    text-decoration: none;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border: 1px solid transparent;
}

.area-links a:hover {
    color: white;
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.areas-cta {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.areas-cta p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.area-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.5rem;
}

.area-list li {
    background: #fff;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.area-list a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.area-list a:hover {
    background: #2c5aa0;
    color: white;
    transform: translateY(-2px);
}

.coverage-map {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.coverage-map a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about h2 {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.about p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    padding: 0.5rem 0;
    color: #333;
    font-weight: 500;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* FAQ Section */
.faq {
    background: white;
    padding: 80px 0;
}

.faq h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #000080;
    font-size: 2.5rem;
}

.faq-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-question {
    background: #f8f9fa;
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    color: #000080;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    flex: 1;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #bf9447;
    transition: transform 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: #bf9447;
    color: white;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem 2rem;
    max-height: 200px;
}

.faq-answer p {
    color: #333;
    line-height: 1.6;
    margin: 0;
}

/* Mobile-Specific Footer Enhancements */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-section {
        margin-bottom: 1.5rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }
    
    .footer-section ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        list-style: none;
        padding: 0;
    }
    
    .footer-section ul li {
        margin: 0;
    }
    
    .footer-bottom {
        text-align: center;
        font-size: 0.9rem;
        padding: 1rem 0;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-section {
        margin-bottom: 1rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .footer-bottom {
        font-size: 0.8rem;
    }
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Mobile Contact Section */
@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-item {
        padding: 1.5rem;
    }
    
    .contact-item h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 40px 0;
    }
    
    .contact-item {
        padding: 1rem;
    }
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5aa0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.contact-item h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-item a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    color: #e55a2b;
}

/* Footer */
.footer {
    background: #2c5aa0;
    color: #fff;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #4a6bb3;
    padding-top: 2rem;
    text-align: center;
    color: #ccc;
}

.footer-bottom a {
    color: #ccc;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-indicators {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .area-list {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

/* Force logo to be tiny everywhere */
img.logo, .logo, .nav-logo {
    height: 25px !important;
    max-height: 25px !important;
    width: auto !important;
    max-width: 80px !important;
    object-fit: contain !important;
}

/* Gallery Page Styles */
.gallery-hero {
    background: linear-gradient(135deg, #000080 0%, #bf9447 100%);
    color: white;
    min-height: 600px;
    padding: 150px 0 100px;
}

.gallery-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.gallery-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.gallery-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #bf9447;
    font-weight: 600;
}

.gallery-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid #000080;
    color: #000080;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: #000080;
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,128,0.9));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.gallery-cta {
    background: linear-gradient(135deg, #000080 0%, #bf9447 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.gallery-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.gallery-cta p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery-item.hidden {
    display: none;
}

/* Navigation active state */
.nav-menu a.active {
    color: #bf9447;
    font-weight: 600;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-hero h1 {
        font-size: 2.5rem;
    }
    
    .gallery-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-cta h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Service Page Styles */
.service-hero {
    background: linear-gradient(135deg, #000080 0%, #bf9447 100%);
    color: white;
    min-height: 500px;
    padding: 150px 0 80px;
}

.service-hero .hero-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.breadcrumb a {
    color: #bf9447;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.service-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.main-content-area {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-intro {
    margin-bottom: 40px;
}

.service-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
}

.service-benefits,
.local-considerations,
.service-process,
.service-cta {
    margin-bottom: 40px;
}

.service-benefits h2,
.local-considerations h2,
.service-process h2,
.service-cta h2 {
    color: #000080;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.benefits-list,
.process-list {
    padding-left: 0;
    list-style: none;
}

.benefits-list li,
.process-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 30px;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #bf9447;
    font-weight: bold;
    font-size: 1.2rem;
}

.process-list {
    counter-reset: step-counter;
}

.process-list li {
    counter-increment: step-counter;
    padding-left: 40px;
}

.process-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    background: #000080;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card,
.related-services,
.nearby-areas {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-card h3,
.related-services h3,
.nearby-areas h3 {
    color: #000080;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-card p {
    margin-bottom: 10px;
}

.contact-card a {
    color: #bf9447;
    text-decoration: none;
    font-weight: 600;
}

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

.related-links,
.area-links {
    list-style: none;
    padding: 0;
}

.related-links li,
.area-links li {
    margin-bottom: 8px;
}

.related-links a,
.area-links a {
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.related-links a:hover,
.area-links a:hover {
    color: #bf9447;
}

.service-cta {
    background: linear-gradient(135deg, #000080 0%, #bf9447 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.service-cta h2 {
    color: white;
    margin-bottom: 20px;
}

.service-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Responsive Service Pages */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .main-content-area {
        padding: 20px;
    }
    
    .service-hero {
        padding: 120px 0 60px;
    }
    
    .service-hero h1 {
        font-size: 2rem;
    }
    
    .service-benefits h2,
    .local-considerations h2,
    .service-process h2,
    .service-cta h2 {
        font-size: 1.5rem;
    }
}

/* Perfect navigation layout */
.nav {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 1rem !important;
    height: 60px !important;
}

.nav-brand {
    flex-shrink: 0 !important;
}

.brand-link {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    text-decoration: none !important;
    padding: 0.5rem 0 !important;
}

.nav-logo {
    height: 60px !important;
    width: auto !important;
    object-fit: contain !important;
    max-width: 180px !important;
}

.brand-text {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: var(--primary-color) !important;
    white-space: nowrap !important;
    line-height: 1.2 !important;
}

.nav-menu-container {
    margin-left: auto !important;
}

@media (max-width: 768px) {
    .nav-brand .logo, img.logo, .logo {
        height: 12px !important;
        max-height: 12px !important;
        max-width: 25px !important;
    }
    
    .nav-brand h2 {
        font-size: 1.1rem;
    }
    
    .nav-brand span {
        font-size: 0.65rem;
    }
    
    .nav-brand a {
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }
    
    .services h2,
    .areas h2,
    .about h2,
    .contact h2 {
        font-size: 2rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.btn-primary:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Success/Error States */
.form-success {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    border: 1px solid #c3e6cb;
}

.form-error {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    border: 1px solid #f5c6cb;
}

.social-icon-link:hover {
    transform: scale(1.15);
    color: #bf9447; /* Brand gold on hover */
}

.social-icon-link svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Specific brand colors for each platform */
.social-icon-link:nth-child(1) {
    color: #1877f2; /* Facebook blue */
}

.social-icon-link:nth-child(2) {
    color: #E4405F; /* Instagram pink */
}

.social-icon-link:nth-child(3) {
    color: #0077b5; /* LinkedIn blue */
}

.social-icon-link:nth-child(1):hover,
.social-icon-link:nth-child(2):hover,
.social-icon-link:nth-child(3):hover {
    color: #bf9447; /* Brand gold on hover for all */
}

.social-links-contact {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-links-contact .social-icon-link {
    font-size: 1.3rem;
}

.social-links-contact .social-icon-link:hover {
    transform: scale(1.15);
}

/* Social Media Links - Mobile-First Responsive Design */
.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
    color: #1877f2;
    /* Mobile-friendly touch targets */
    min-width: 44px;
    min-height: 44px;
    padding: 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
}

.social-icon-link:hover,
.social-icon-link:focus {
    transform: scale(1.1);
    color: #bf9447;
    background: rgba(191, 148, 71, 0.1);
}

.social-icon-link svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    flex-shrink: 0;
}

/* Specific brand colors for each platform */
.social-icon-link:nth-child(1) {
    color: #1877f2; /* Facebook blue */
}

.social-icon-link:nth-child(2) {
    color: #E4405F; /* Instagram pink */
}

.social-icon-link:nth-child(3) {
    color: #0077b5; /* LinkedIn blue */
}

.social-icon-link:nth-child(1):hover,
.social-icon-link:nth-child(2):hover,
.social-icon-link:nth-child(3):hover,
.social-icon-link:nth-child(1):focus,
.social-icon-link:nth-child(2):focus,
.social-icon-link:nth-child(3):focus {
    color: #bf9447; /* Brand gold on hover/focus for all */
}

.social-links-contact {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.social-links-contact .social-icon-link {
    min-width: 40px;
    min-height: 40px;
    padding: 8px;
}

.social-links-contact .social-icon-link svg {
    width: 20px;
    height: 20px;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .social-links {
        gap: 1rem;
        justify-content: center;
    }
    
    .social-icon-link {
        min-width: 48px;
        min-height: 48px;
        padding: 12px;
    }
    
    .social-icon-link svg {
        width: 24px;
        height: 24px;
    }
    
    .social-links-contact {
        gap: 1rem;
        justify-content: center;
    }
    
    .social-links-contact .social-icon-link {
        min-width: 44px;
        min-height: 44px;
        padding: 10px;
    }
    
    .social-links-contact .social-icon-link svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .social-links {
        gap: 0.8rem;
    }
    
    .social-icon-link {
        min-width: 44px;
        min-height: 44px;
        padding: 10px;
    }
    
    .social-links-contact {
        gap: 0.8rem;
    }
}
