/* Base Styles & Variables */
:root {
    --primary-color: #2a7f8f;
    --secondary-color: #6a4c93;
    --accent-color: #f8b400;
    --light-blue: #e6f4f7;
    --teal: #2a7f8f;
    --lavender: #6a4c93;
    --soft-gold: #f8b400;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #333333;
    --text-color: #333333;
    --text-light: #666666;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --glass-effect: rgba(255, 255, 255, 0.2);
    --glass-border: 1px solid rgba(255, 255, 255, 0.3);
    --glass-blur: blur(10px);
}

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

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

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

img {
    max-width: 100%;
    height: auto;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--teal);
    color: var(--white);
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--teal);
    text-align: center;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--teal);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(42, 127, 143, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    background-color: transparent;
    color: var(--teal);
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--teal);
    text-align: center;
}

.btn-secondary:hover {
    background-color: var(--teal);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(42, 127, 143, 0.3);
}

.btn-text {
    display: inline-flex;
    align-items: center;
    color: var(--teal);
    font-weight: 600;
    transition: var(--transition);
}

.btn-text i {
    margin-left: 5px;
    transition: var(--transition);
}

.btn-text:hover {
    color: var(--lavender);
}

.btn-text:hover i {
    transform: translateX(3px);
}

/* Glassmorphism Effect */
.glass {
    background: var(--glass-effect);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-secondary);
    font-size: 24px;
    font-weight: 700;
    color: var(--teal);
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
}

.nav-list li {
    margin-left: 25px;
    position: relative;
}

.nav-list a {
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-list a:hover {
    color: var(--teal);
}

.nav-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--teal);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.nav-list a:hover::after {
    width: 100%;
}

.nav-phone {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--teal);
}

.nav-phone i {
    margin-right: 5px;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    width: 200px;
    border-radius: 5px;
    box-shadow: var(--box-shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    transform: translateY(10px);
    z-index: 100;
    padding: 10px 0;
}

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

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background-color: var(--light-blue);
    color: var(--teal);
    padding-left: 25px;
}

.dropdown > a i {
    margin-left: 5px;
    font-size: 12px;
    transition: var(--transition);
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--teal);
    border-radius: 3px;
    transition: var(--transition);
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://img.freepik.com/free-photo/standard-quality-control-concept-m_23-2150041861.jpg?t=st=1725659253~exp=1725662853~hmac=0e5b7d9d3c5d7f3e6d1f3e5c5d7f3e6d1f3e5c5d7f3e6d1f3e5c5d7f3e6d1f3e5c5&w=1380') no-repeat center center/cover;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--teal);
}

.hero .subtitle {
    font-size: 22px;
    color: var(--text-color);
    margin-bottom: 30px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto 50px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
}

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

.stat-item h3 {
    font-size: 32px;
    color: var(--teal);
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--text-light);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* We Get It Section */
.we-get-it {
    padding: 80px 0;
    text-align: center;
    background-color: var(--light-blue);
}

.we-get-it h2 {
    font-size: 36px;
    color: var(--teal);
    margin-bottom: 20px;
}

.we-get-it .lead {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 30px;
    color: var(--text-color);
}

.we-get-it h3 {
    font-size: 24px;
    color: var(--lavender);
    margin-bottom: 20px;
}

/* Services Grid */
.services-grid {
    padding: 80px 0;
}

.service-card {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    gap: 50px;
}

.service-card.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 32px;
    color: var(--teal);
    margin-bottom: 20px;
}

.service-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.service-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

/* How It Works Section */





/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2a7f8f;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-intro {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Steps Container */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

/* Individual Step */
.step {
    display: flex;
    gap: 30px;
    position: relative;
}

.step-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2a7f8f, #6a4c93);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(42, 127, 143, 0.3);
    z-index: 2;
    position: relative;
}

.step-connector {
    width: 2px;
    height: 120px;
    background: linear-gradient(to bottom, #2a7f8f, #6a4c93);
    margin: 15px 0;
    opacity: 0.5;
}

.step:last-child .step-connector {
    display: none;
}

.step-content {
    flex: 1;
    padding: 15px 0;
}

.step-header h3 {
    font-size: 1rem;
    text-transform: uppercase;
    color: #6a4c93;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 600;
}

.step-content h4 {
    font-size: 1.4rem;
    color: #2a7f8f;
    margin-bottom: 15px;
    font-weight: 600;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* CTA Form */
.cta-form {
    background: white;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.cta-form h3 {
    font-size: 1.8rem;
    color: #2a7f8f;
    margin-bottom: 15px;
    font-weight: 600;
}

.cta-form p {
    color: #666;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.form-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}


/* Responsive Design */
@media (max-width: 992px) {
    .step {
        gap: 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .step-connector {
        height: 100px;
    }
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .step-visual {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 15px;
    }
    
    .step-connector {
        width: 60px;
        height: 2px;
        margin: 0;
    }
    
    .step:last-child .step-visual {
        justify-content: center;
    }
    
    .cta-form {
        padding: 30px 20px;
    }
    
    .form-options {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-intro {
        font-size: 1.1rem;
    }
    
    .step-content h4 {
        font-size: 1.2rem;
    }
    
    .cta-form h3 {
        font-size: 1.5rem;
    }
}

/* Animation for steps */
.step {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.step.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delay */
.step:nth-child(1) { transition-delay: 0.1s; }
.step:nth-child(2) { transition-delay: 0.3s; }
.step:nth-child(3) { transition-delay: 0.5s; }




/* Stats Section */
.stats-section {
    padding: 80px 0;
    text-align: center;
}

.stats-section h2 {
    font-size: 36px;
    color: var(--teal);
    margin-bottom: 15px;
}

.stats-section p {
    max-width: 700px;
    margin: 0 auto 50px;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-card {
    flex: 1;
    min-width: 200px;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-card h3 {
    font-size: 32px;
    color: var(--teal);
    margin-bottom: 10px;
}

/* Why Us Section */
.why-us {
    padding: 80px 0;
    background-color: var(--light-blue);
    text-align: center;
}

.why-us h2 {
    font-size: 36px;
    color: var(--teal);
    margin-bottom: 15px;
}

.section-title {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 50px;
    display: block;
}

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

.benefit-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

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

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--teal), var(--lavender));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 24px;
}

.benefit-card h3 {
    font-size: 22px;
    color: var(--teal);
    margin-bottom: 15px;
}

/* App Section */
.app-section {
    padding: 80px 0;
}

.app-section .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.app-content {
    flex: 1;
}

.app-content h2 {
    font-size: 36px;
    color: var(--teal);
    margin-bottom: 20px;
}

.app-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.app-content blockquote {
    font-style: italic;
    font-size: 20px;
    color: var(--lavender);
    padding-left: 20px;
    border-left: 3px solid var(--teal);
    margin: 30px 0;
}

.app-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.app-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

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

.testimonials h2 {
    font-size: 36px;
    color: var(--teal);
    margin-bottom: 50px;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.testimonial-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.testimonial-card {
    min-width: 350px;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    scroll-snap-align: start;
    text-align: left;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.category {
    background-color: var(--teal);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
}

.testimonial-header i {
    color: var(--lavender);
    font-size: 20px;
    cursor: pointer;
}

.testimonial-card blockquote {
    font-style: italic;
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    position: relative;
}

.testimonial-card blockquote::before,
.testimonial-card blockquote::after {
    content: '"';
    font-size: 24px;
    color: var(--teal);
    opacity: 0.5;
}

.testimonial-author {
    margin-top: 20px;
}

.testimonial-author strong {
    display: block;
    color: var(--teal);
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-light);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.slider-prev, .slider-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--medium-gray);
    color: var(--teal);
    cursor: pointer;
    transition: var(--transition);
}

.slider-prev:hover, .slider-next:hover {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--medium-gray);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--teal);
}

/* Community Section */
.community {
    padding: 80px 0;
    text-align: center;
}

.community h2 {
    font-size: 36px;
    color: var(--teal);
    margin-bottom: 15px;
}

.community .subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.community p {
    max-width: 700px;
    margin: 0 auto 30px;
}

.community-options {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.option-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--medium-gray);
}

.option-tab {
    flex: 1;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-light);
    position: relative;
}

.option-tab.active {
    color: var(--teal);
}

.option-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--teal);
}

.postcode-search {
    display: flex;
    gap: 10px;
}

.postcode-search input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid var(--medium-gray);
    border-radius: 30px;
    font-family: var(--font-primary);
}

.postcode-search button {
    padding: 12px 25px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: var(--light-blue);
}

.faq h2 {
    font-size: 36px;
    color: var(--teal);
    margin-bottom: 15px;
    text-align: center;
}

.faq .subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
}

.faq .btn-text {
    display: block;
    text-align: center;
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.faq-item h3 {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--teal);
    transition: var(--transition);
}

.faq-item h3:hover {
    background-color: rgba(42, 127, 143, 0.1);
}

.faq-item h3::after {
    content: '+';
    font-size: 24px;
}

.faq-item.active h3::after {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 20px 20px;
}

.faq-answer p {
    margin-bottom: 15px;
}





/* Contact Section Styles */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCI+PHBhdGggZD0iTTAgMGg2MHY2MEgweiIgZmlsbD0ibm9uZSIvPjxjaXJjbGUgY3g9IjMwIiBjeT0iMzAiIHI9IjIiIGZpbGw9IiMyYTdmOGYiIGZpbGwtb3BhY2l0eT0iMC4xIi8+PC9zdmc+');
    opacity: 0.3;
}

.contact-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #2a7f8f;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2a7f8f, #6a4c93);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    margin-top: 25px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2a7f8f, #6a4c93);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    color: #2a7f8f;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.contact-details a, .contact-details p {
    color: #555;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #2a7f8f;
}

.business-hours {
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.business-hours h3 {
    color: #2a7f8f;
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-align: center;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item .day {
    color: #555;
    font-weight: 500;
}

.hours-item .time {
    color: #2a7f8f;
    font-weight: 600;
}

.contact-form {
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
    color: #2a7f8f;
    margin-bottom: 25px;
    font-size: 1.5rem;
    text-align: center;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: transparent;
    z-index: 2;
    position: relative;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232a7f8f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #999;
    transition: all 0.3s ease;
    pointer-events: none;
    background: white;
    padding: 0 5px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #2a7f8f;
    outline: none;
    box-shadow: 0 0 0 3px rgba(42, 127, 143, 0.1);
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:not([value=""]) + label {
    top: -10px;
    left: 10px;
    font-size: 0.85rem;
    color: #2a7f8f;
    background: white;
    z-index: 3;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #2a7f8f, #6a4c93);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(42, 127, 143, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(42, 127, 143, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.map-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    height: 300px;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #2a7f8f;
    position: relative;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.map-placeholder p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.map-link {
    padding: 10px 20px;
    background: #2a7f8f;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.map-link:hover {
    background: #6a4c93;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-icon {
        align-self: center;
    }
    
    .hours-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .map-container {
        height: 250px;
    }
    
    .map-placeholder i {
        font-size: 2.5rem;
    }
    
    .map-placeholder p {
        font-size: 1rem;
    }
}























/* Partners Section Styles */
.partners {
    padding: 60px 0;
    background-color: #f8f9fa;
    overflow: hidden;
}

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

.partners h3 {
    text-align: center;
    font-size: 24px;
    color: #2a7f8f;
    margin-bottom: 30px;
    font-weight: 600;
}

.partner-track {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.partner-logos {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.partner-item {
    flex: 0 0 auto;
    margin: 0 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 80px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.partner-item img {
    max-width: 80%;
    max-height: 60px;
    object-fit: contain;
   
    
}

.partner-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Pause animation on hover */
.partner-track:hover .partner-logos {
    animation-play-state: paused;
}

/* Keyframes for scrolling animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .partners {
        padding: 40px 0;
    }
    
    .partners h3 {
        font-size: 20px;
    }
    
    .partner-item {
        width: 120px;
        height: 70px;
        margin: 0 15px;
    }
    
    .partner-logos {
        animation-duration: 20s;
    }
}

@media (max-width: 480px) {
    .partner-item {
        width: 100px;
        height: 60px;
        margin: 0 10px;
    }
    
    .partners h3 {
        font-size: 18px;
    }
}













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

.final-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.final-cta .subtitle {
    font-size: 20px;
    margin-bottom: 20px;
}

.final-cta p {
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.referral-cta {
    margin-top: 50px;
}

.referral-cta p {
    margin-bottom: 10px;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background-color: var(--dark-gray);
    color: var(--white);
}

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

.footer-links h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--medium-gray);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--medium-gray);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--white);
}

.social-icons a:hover {
    background: var(--teal);
    transform: translateY(-3px);
}

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

.footer-logo .logo {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-logo p {
    color: var(--medium-gray);
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 40px;
    }
    
    .service-card, .service-card.reverse {
        flex-direction: column;
        gap: 30px;
    }
    
    .app-section .container {
        flex-direction: column;
    }
    
    .app-content, .app-image {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-list {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-list.active {
        left: 0;
    }
    
    .nav-list li {
        margin: 15px 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        width: 100%;
        box-shadow: none;
        display: none;
        padding: 0;
        margin-top: 10px;
    }
    
    .dropdown:hover .dropdown-menu {
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero .subtitle {
        font-size: 18px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .testimonial-card {
        min-width: 300px;
    }
    
    .footer-logo {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .postcode-search {
        flex-direction: column;
    }
    
    .postcode-search input, .postcode-search button {
        width: 100%;
    }
    
    .cta-buttons, .form-options {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
    }
}














































/* Base Styles & Variables - Updated Color Scheme */
/* Base Styles & Variables - Updated Color Scheme */
:root {
    --primary-color: #4CAF50; /* Green for buttons and accents */
    --secondary-color: #388E3C; /* Darker green for hover states */
    --accent-color: #8BC34A; /* Lighter green for accents */
    --background-dark: #2D1B69; /* Dark purple for backgrounds */
    --background-darker: #1A103D; /* Even darker purple for elements */
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --text-color: #ffffff; /* White text */
    --text-light: #cccccc; /* Light gray for secondary text */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
    --glass-effect: rgba(45, 27, 105, 0.5);
    --glass-border: 1px solid rgba(255, 255, 255, 0.2);
    --glass-blur: blur(10px);
}

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

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-dark);
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--white);
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

img {
    max-width: 100%;
    height: auto;
}

/* Buttons - Updated to Green */
.btn-primary {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    text-align: center;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    background-color: transparent;
    color: var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    text-align: center;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.btn-text {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.btn-text i {
    margin-left: 5px;
    transition: var(--transition);
}

.btn-text:hover {
    color: var(--accent-color);
}

.btn-text:hover i {
    transform: translateX(3px);
}

/* Glassmorphism Effect - Updated for dark background */
.glass {
    background: var(--glass-effect);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

/* Navbar - Updated for dark background */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(45, 27, 105, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(45, 27, 105, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-secondary);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
}

.nav-list li {
    margin-left: 25px;
    position: relative;
}

.nav-list a {
    font-weight: 500;
    color: var(--white);
    transition: var(--transition);
    position: relative;
}

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

.nav-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.nav-list a:hover::after {
    width: 100%;
}

.nav-phone {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--primary-color);
}

.nav-phone i {
    margin-right: 5px;
}

/* Dropdown Menu - Updated for dark background */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--background-darker);
    width: 200px;
    border-radius: 5px;
    box-shadow: var(--box-shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    transform: translateY(10px);
    z-index: 100;
    padding: 10px 0;
}

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

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--white);
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background-color: rgba(76, 175, 80, 0.2);
    color: var(--primary-color);
    padding-left: 25px;
}

.dropdown > a i {
    margin-left: 5px;
    font-size: 12px;
    transition: var(--transition);
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

/* Hero Section - Updated for dark background */
.hero {
    padding: 250px 0 100px;
     background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://img.freepik.com/free-photo/standard-quality-control-concept-m_23-2150041856.jpg?t=st=1725658962~exp=1725662562~hmac=6b8b0b3d5c5d7f3e6d1f3e5c5d7f3e6d1f3e5c5d7f3e6d1f3e5c5d7f3e6d1f3e5c5&w=1380') no-repeat center center/cover;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--white);
}

.hero .subtitle {
    font-size: 22px;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* We Get It Section - Updated for dark background */
.we-get-it {
    padding: 80px 0;
    text-align: center;
    background-color: var(--background-darker);
}

.we-get-it h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 20px;
}

.we-get-it .lead {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 30px;
    color: var(--text-light);
}

.we-get-it h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Services Grid - Updated for dark background */
.services-grid {
    padding: 80px 0;
    background-color: var(--background-dark);
}

.service-card {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    gap: 50px;
}

.service-content h3 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 20px;
}

.service-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 25px;
}

/* How It Works Section - Updated for dark background */
.how-it-works {
    padding: 80px 0;
    background-color: var(--background-darker);
    position: relative;
}

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

.section-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
    z-index: 2;
    position: relative;
}

.step-connector {
    width: 2px;
    height: 120px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    margin: 15px 0;
    opacity: 0.5;
}

.step-header h3 {
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--accent-color);
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 600;
}

.step-content h4 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 600;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

.cta-form {
    background: var(--background-darker);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin: 0 auto;
}

.cta-form h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 600;
}

.cta-form p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* Stats Section - Updated for dark background */
.stats-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--background-dark);
}

.stats-section h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 15px;
}

.stats-section p {
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--text-light);
}

.stat-card {
    flex: 1;
    min-width: 200px;
    background: var(--background-darker);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.stat-card h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-card p {
    color: var(--text-light);
}

/* Why Us Section - Updated for dark background */
.why-us {
    padding: 80px 0;
    background-color: var(--background-darker);
    text-align: center;
}

.why-us h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 15px;
}

.section-title {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 50px;
    display: block;
}

.benefit-card {
    background: var(--background-dark);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

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

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 24px;
}

.benefit-card h3 {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-light);
}

/* App Section - Updated for dark background */
.app-section {
    padding: 80px 0;
    background-color: var(--background-dark);
}

.app-content h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 20px;
}

.app-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-light);
}

.app-content blockquote {
    font-style: italic;
    font-size: 20px;
    color: var(--primary-color);
    padding-left: 20px;
    border-left: 3px solid var(--primary-color);
    margin: 30px 0;
}

/* Testimonials Section - Updated for dark background */
.testimonials {
    padding: 80px 0;
    background-color: var(--background-darker);
    text-align: center;
}

.testimonials h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 50px;
}

.testimonial-card {
    min-width: 350px;
    background: var(--background-dark);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    scroll-snap-align: start;
    text-align: left;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.category {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
}

.testimonial-header i {
    color: var(--primary-color);
    font-size: 20px;
    cursor: pointer;
}

.testimonial-card blockquote {
    font-style: italic;
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    position: relative;
}

.testimonial-card blockquote::before,
.testimonial-card blockquote::after {
    content: '"';
    font-size: 24px;
    color: var(--primary-color);
    opacity: 0.5;
}

.testimonial-author strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-light);
}

.slider-prev, .slider-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--background-dark);
    border: 1px solid var(--medium-gray);
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.slider-prev:hover, .slider-next:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--medium-gray);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
}

/* Community Section - Updated for dark background */
.community {
    padding: 80px 0;
    text-align: center;
    background-color: var(--background-dark);
}

.community h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 15px;
}

.community .subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.community p {
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--text-light);
}

.community-options {
    max-width: 600px;
    margin: 0 auto;
    background: var(--background-darker);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.option-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.option-tab {
    flex: 1;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-light);
    position: relative;
}

.option-tab.active {
    color: var(--primary-color);
}

.option-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.postcode-search input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-family: var(--font-primary);
    background: var(--background-darker);
    color: var(--white);
}

/* FAQ Section - Updated for dark background */
.faq {
    padding: 80px 0;
    background-color: var(--background-darker);
}

.faq h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 15px;
    text-align: center;
}

.faq .subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--text-light);
}

.faq-item {
    background: var(--background-dark);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.faq-item h3 {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--white);
    transition: var(--transition);
}

.faq-item h3:hover {
    background-color: rgba(76, 175, 80, 0.1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
    background: var(--background-dark);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 20px 20px;
}

.faq-answer p {
    margin-bottom: 15px;
    color: var(--text-light);
}

/* Contact Section - Updated for dark background */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--background-dark) 0%, var(--background-darker) 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCI+PHBhdGggZD0iTTAgMGg2MHY2MEgweiIgZmlsbD0ibm9uZSIvPjxjaXJjbGUgY3g9IjMwIiBjeT0iMzAiIHI9IjIiIGZpbGw9IiM0Q0FGNTAiIGZpbGwtb3BhY2l0eT0iMC4xIi8+PC9zdmc+');
    opacity: 0.3;
}

.section-header h2 {
    color: var(--white);
}

.section-header p {
    color: var(--text-light);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--background-darker);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    color: var(--white);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.contact-details a, .contact-details p {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary-color);
}

.business-hours {
    padding: 25px;
    background: var(--background-darker);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.business-hours h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-align: center;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item .day {
    color: var(--text-light);
    font-weight: 500;
}

.hours-item .time {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-form {
    padding: 30px;
    background: var(--background-darker);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-form h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.5rem;
    text-align: center;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--background-dark);
    color: var(--white);
    z-index: 2;
    position: relative;
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--text-light);
    transition: all 0.3s ease;
    pointer-events: none;
    background: var(--background-darker);
    padding: 0 5px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:not([value=""]) + label {
    top: -10px;
    left: 10px;
    font-size: 0.85rem;
    color: var(--primary-color);
    background: var(--background-darker);
    z-index: 3;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.map-container {
    background: var(--background-darker);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    height: 300px;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--background-dark) 0%, var(--background-darker) 100%);
    color: var(--primary-color);
    position: relative;
}

.map-link {
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Partners Section - Updated for dark background */
.partners {
    padding: 60px 0;
    background-color: var(--background-dark);
    overflow: hidden;
}

.partners h3 {
    text-align: center;
    font-size: 24px;
    color: var(--white);
    margin-bottom: 30px;
    font-weight: 600;
}

.partner-item {
    flex: 0 0 auto;
    margin: 0 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 80px;
    background: var(--background-darker);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Final CTA - Updated for dark background */
.final-cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

/* Footer - Updated for dark background */
.footer {
    padding: 60px 0 30px;
    background-color: var(--background-darker);
    color: var(--white);
}

.footer-links h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links a {
    color: var(--text-light);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--white);
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-logo .logo {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-logo p {
    color: var(--text-light);
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-list {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--background-darker);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-list.active {
        left: 0;
    }
    
    .nav-list li {
        margin: 15px 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        width: 100%;
        box-shadow: none;
        display: none;
        padding: 0;
        margin-top: 10px;
        background: var(--background-dark);
    }
}

/* Additional specific page styles would follow the same pattern */




/*logo in the navbar */

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: rgba(45, 27, 105, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
    padding: 10px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block; /* Ensures image is visible */
    border-radius: 4px; /* Optional: adds slight rounding to image corners */
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 22px;
    white-space: nowrap;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
}

.nav-list li {
    margin-left: 25px;
    position: relative;
}

.nav-list a {
    font-weight: 500;
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Montserrat', sans-serif;
}

.nav-list a:hover {
    color: #4CAF50;
}

.nav-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #4CAF50;
    bottom: -5px;
    left: 0;
    transition: all 0.3s ease;
}

.nav-list a:hover::after {
    width: 100%;
}

.btn-primary {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: #ffffff;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #4CAF50;
}

.btn-primary:hover {
    background-color: #388E3C;
    border-color: #388E3C;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-list {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #1A103D;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .nav-list.active {
        left: 0;
    }
    
    .nav-list li {
        margin: 15px 0;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .logo-text {
        font-size: 18px;
    }
}

/* If image doesn't load, add fallback styling */
.logo-img:before {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4CAF50, #388E3C);
    border-radius: 4px;
}

.logo-img[src]:not([src=""])::before {
    display: none;
}