/* 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;
    background: rgba(255, 255, 255, 0.95);
    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);
}

 


/* 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 {
    position: relative;
    padding: 120px 0;
    color: white;
    text-align: center;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero .hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
     background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.7));
    z-index: 2;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCI+PHBhdGggZD0iTTAgMGg2MHY2MEgweiIgZmlsbD0ibm9uZSIvPjxjaXJjbGUgY3g9IjMwIiBjeT0iMzAiIHI9IjIiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iMC4xIi8+PC9zdmc+');
    opacity: 0.15;
    z-index: 3;
}

.hero .container {
    position: relative;
    z-index: 4;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
}


.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%;
    }
}

















        /*services*/


          
        :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;
        }

        * {
            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);
        }

        /* Navbar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 0;
            background: #ffffff;
            box-shadow: 0 2px 10px 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;
        }

        /* Hero Section */
        .services-hero {
    position: relative;
    padding: 100px 0;
    color: white;
    text-align: center;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.services-hero .hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.7)); 
    z-index: 2;
}

.services-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCI+PHBhdGggZD0iTTAgMGg2MHY2MEgweiIgZmlsbD0ibm9uZSIvPjxjaXJjbGUgY3g9IjMwIiBjeT0iMzAiIHI9IjIiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iMC4xIi8+PC9zdmc+');
    opacity: 0.2;
    z-index: 3;
}

.services-hero .container {
    position: relative;
    z-index: 4;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

        .services-hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: var(--teal);
        }

        .services-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;
        }

        /* Intro Section */
        .services-intro {
            padding: 80px 0;
            text-align: center;
            background-color: var(--light-blue);
        }

        .services-intro h2 {
            font-size: 36px;
            color: var(--teal);
            margin-bottom: 20px;
        }

        .services-intro p {
            max-width: 800px;
            margin: 0 auto 30px;
            font-size: 18px;
        }

        /* Service Categories */
        .service-categories {
            padding: 80px 0;
            background-color: white;
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .category-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 10px;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            text-align: center;
            border-top: 5px solid var(--teal);
        }

        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .category-card.clinical {
            border-top-color: var(--teal);
        }

        .category-card.independence {
            border-top-color: var(--lavender);
        }

        .category-card.everyday {
            border-top-color: var(--soft-gold);
        }

        .category-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;
        }

        .category-card h3 {
            font-size: 22px;
            color: var(--teal);
            margin-bottom: 15px;
        }

        /* Services Section */
        .services-section {
            padding: 80px 0;
            background-color: var(--light-blue);
        }

        .services-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tab-btn {
            padding: 12px 25px;
            background: none;
            border: none;
            border-bottom: 3px solid transparent;
            font-weight: 600;
            color: var(--text-light);
            cursor: pointer;
            transition: var(--transition);
        }

        .tab-btn.active {
            color: var(--teal);
            border-bottom: 3px solid var(--teal);
        }

        .tab-btn:hover {
            color: var(--teal);
        }

        .services-content {
            display: none;
        }

        .services-content.active {
            display: block;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-item {
            background: var(--white);
            padding: 25px;
            border-radius: 10px;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
        }

        .service-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .service-item h4 {
            font-size: 18px;
            color: var(--teal);
            margin-bottom: 10px;
        }

        .service-item p {
            font-size: 14px;
            color: var(--text-light);
        }

        .pricing-cta {
            text-align: center;
            margin-top: 50px;
        }

        /* 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;
        }

        .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) {
            .services-hero h1 {
                font-size: 40px;
            }
            
            .services-tabs {
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 768px) {
            .services-hero h1 {
                font-size: 32px;
            }
            
            .services-hero .subtitle {
                font-size: 18px;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .categories-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .services-hero {
                padding: 150px 0 80px;
            }
            
            .services-hero h1 {
                font-size: 28px;
            }
            
            .section-header h2 {
                font-size: 28px;
            }
        }
    












        
/*navbar*/



.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: 70px;
    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;
   
    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;

    transition: all 0.3s ease;
    position: relative;
    font-family: 'Montserrat', sans-serif;
}

.nav-list a:hover {
    color: #2a7f8f;
}

.nav-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;

    bottom: -5px;
    left: 0;
    transition: all 0.3s ease;
}

.nav-list a:hover::after {
    width: 100%;
}

.btn-primary {
    display: inline-block;
    padding: 10px 20px;
    
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    
}



.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;

    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-list {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);

        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: 55px;
        margin-left: 20px;
    }
    
    .logo-text {
        font-size: 18px;
    }
}

/* If image doesn't load, add fallback styling */
.logo-img:before {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
   
    border-radius: 4px;
}

.logo-img[src]:not([src=""])::before {
    display: none;
}













/* Contact Section - Mobile Responsive Styles */
.contact-section {
    padding: 40px 0;
    margin-top: 30px;
}

.contact-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 1.8rem;
    color: #2a7f8f;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1rem;
    color: #666;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}

.contact-info {
    order: 2;
}

.contact-form {
    order: 1;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
    font-size: 1.3rem;
    color: #2a7f8f;
    margin-bottom: 20px;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #2a7f8f, #6a4c93);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}



.contact-details a, .contact-details p {
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
    display: block;
    word-break: break-word;
}

.contact-details a:hover {
    color: #2a7f8f;
}

.business-hours {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
}

.business-hours h3 {
    color: #2a7f8f;
    margin-bottom: 15px;
    font-size: 1.1rem;
    text-align: center;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item .day {
    color: #555;
}

.hours-item .time {
    color: #2a7f8f;
    font-weight: 500;
}

/* Form Styles */
.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: transparent;
}

.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: 14px;
}

.form-group label {
    position: absolute;
    top: 12px;
    left: 15px;
    color: #999;
    transition: all 0.3s ease;
    pointer-events: none;
    background: white;
    padding: 0 5px;
    font-size: 0.9rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea: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 select:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:not([value=""]) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    color: #2a7f8f;
    background: white;
    z-index: 3;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #2a7f8f, #6a4c93);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(42, 127, 143, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(42, 127, 143, 0.4);
}

/* Map Container */
.map-container {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 250px;
}

.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;
    padding: 20px;
    text-align: center;
}

.map-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.map-placeholder p {
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.map-link {
    padding: 8px 16px;
    background: #2a7f8f;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.map-link:hover {
    background: #6a4c93;
    transform: translateY(-2px);
}

/* Tablet Styles */
@media (min-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .contact-content {
        flex-direction: row;
        gap: 40px;
    }
    
    .contact-info {
        flex: 1;
        order: 1;
    }
    
    .contact-form {
        flex: 1;
        order: 2;
        padding: 25px;
    }
    
    .contact-form h3 {
        font-size: 1.4rem;
    }
    
    .contact-item {
        padding: 20px;
    }
    
    
    .business-hours {
        padding: 25px;
    }
    
    .map-container {
        height: 300px;
    }
    
    .map-placeholder i {
        font-size: 3rem;
    }
}

/* Desktop Styles */
@media (min-width: 992px) {
    .contact-section .container {
        padding: 0 20px;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .contact-content {
        gap: 60px;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .contact-form h3 {
        font-size: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 15px;
    }
    
    .submit-btn {
        padding: 16px;
    }
    
    .map-container {
        height: 350px;
    }
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
    .contact-section .container {
        max-width: 1140px;
    }
}

/* Small Mobile Adjustments */
@media (max-width: 360px) {
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .contact-icon {
        align-self: center;
    }
    
    .contact-details h3 {
        text-align: center;
    }
    
    
    .hours-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    .map-placeholder {
        padding: 15px;
    }
    
    .map-placeholder i {
        font-size: 2rem;
    }
    
    .map-placeholder p {
        font-size: 0.9rem;
    }
}

/* Form input placeholder styling */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: transparent;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    color: #ccc;
}

/* Animation for form elements */
.form-group input,
.form-group select,
.form-group textarea {
    transition: all 0.3s ease;
}

/* Focus states for accessibility */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2a7f8f;
    outline: none;
    box-shadow: 0 0 0 3px rgba(42, 127, 143, 0.2);
}

/* Button active state */
.submit-btn:active {
    transform: translateY(0);
}







/* Active Page Highlighting */
.nav-list a.active {
    color: var(--teal);
    font-weight: 600;
}

.nav-list a.active::after {
    width: 100%;
}






        





/* Highlight Active Link */
.nav-list a.active {
  color: var(--teal);
  font-weight: 600;
}

.nav-list a.active::after {
  width: 100%;
  background: var(--teal);
}













/* Contact Section Styles */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #2a7f8f;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2a7f8f, #6a4c93);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.contact-details {
    flex: 1;
    min-width: 0; /* Important for text wrapping */
}

.contact-details h3 {
    color: #2a7f8f;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

.contact-person {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.contact-person:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.person-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.person-name {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
    line-height: 1.4;
    word-wrap: break-word;
}

.phone-number {
    color: #2a7f8f;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 8px 0;
    display: block;
    line-height: 1.4;
}

.phone-number:hover {
    color: #6a4c93;
    text-decoration: underline;
}

.email-link {
    display: inline-block;
    color: #2a7f8f;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 10px 16px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    word-break: break-all;
    line-height: 1.4;
}

.email-link:hover {
    color: #6a4c93;
    background: #e9ecef;
    transform: translateY(-1px);
}

.business-hours {
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #f8b400;
}

.business-hours h3 {
    color: #2a7f8f;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
}

.hours-item p {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    text-align: center;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .contact-info {
        gap: 20px;
        padding: 0 10px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px 15px;
    }
    
    .contact-icon {
        align-self: center;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-top: 0;
    }
    
    .contact-details {
        width: 100%;
    }
    
    .contact-details h3 {
        margin-bottom: 15px;
        font-size: 1.2rem;
    }
    
    .contact-person {
        margin-bottom: 12px;
        padding-bottom: 12px;
    }
    
    .person-info {
        gap: 6px;
    }
    
    .person-name {
        font-size: 0.95rem;
        line-height: 1.3;
    }
    
    .phone-number {
        font-size: 0.95rem;
        padding: 6px 0;
        line-height: 1.3;
    }
    
    .email-link {
        font-size: 0.95rem;
        padding: 8px 12px;
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
    
    .business-hours {
        padding: 20px 15px;
    }
    
    .business-hours h3 {
        font-size: 1.2rem;
    }
    
    .hours-item p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .contact-info {
        gap: 15px;
        padding: 0 8px;
    }
    
    .contact-item {
        padding: 18px 12px;
        gap: 12px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .contact-details h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .contact-person {
        margin-bottom: 10px;
        padding-bottom: 10px;
    }
    
    .person-info {
        gap: 4px;
    }
    
    .person-name {
        font-size: 0.9rem;
        line-height: 1.2;
    }
    
    .phone-number {
        font-size: 0.9rem;
        padding: 4px 0;
        line-height: 1.2;
    }
    
    .email-link {
        font-size: 0.9rem;
        padding: 6px 10px;
    }
    
    .business-hours {
        padding: 18px 12px;
    }
    
    .business-hours h3 {
        font-size: 1.1rem;
    }
    
    .hours-item p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .contact-info {
        gap: 12px;
        padding: 0 5px;
    }
    
    .contact-item {
        padding: 15px 10px;
        gap: 10px;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .contact-details h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .person-name {
        font-size: 0.85rem;
        line-height: 1.2;
    }
    
    .phone-number {
        font-size: 0.85rem;
        line-height: 1.2;
    }
    
    .email-link {
        font-size: 0.85rem;
        padding: 5px 8px;
    }
    
    .business-hours {
        padding: 15px 10px;
    }
    
    .business-hours h3 {
        font-size: 1rem;
    }
    
    .hours-item p {
        font-size: 0.85rem;
        line-height: 1.3;
    }
}

/* Ensure proper text wrapping on all devices */
.person-name,
.phone-number,
.email-link {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Touch-friendly sizes for mobile */
@media (hover: none) and (pointer: coarse) {
    .phone-number,
    .email-link {
        min-height: 44px; /* Minimum touch target size */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .phone-number {
        padding: 12px 0;
    }
    
    .email-link {
        padding: 12px 16px;
    }
}












/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
    background: transparent;
    border: none;
    padding: 0;
}

.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--teal);
    border-radius: 3px;
    transition: var(--transition);
    transform-origin: center;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-list {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 100px;
        transition: var(--transition);
        z-index: 999;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-list.active {
        left: 0;
    }
    
    .nav-list li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-list a {
        display: block;
        padding: 15px 20px;
        font-size: 1.1rem;
        width: 100%;
    }
    
    .nav-list .btn-primary {
        margin: 20px 0;
        width: 80%;
        max-width: 200px;
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}





/* Remove underline/line for active page in mobile view */
@media (max-width: 768px) {
    .nav-list a.active::after {
        display: none !important;
    }
    
    .nav-list a.active {
        background-color: #e6f4f7; /* Light background instead of line */
        border-radius: 8px;
        margin: 0 10px;
    }
    
    .nav-list a {
        border-bottom: none !important;
    }
    
    .nav-list a::after {
        display: none !important;
    }
}

/* Alternative: Completely remove any lines for active links */
.nav-list a.active::after {
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
}

/* For mobile specifically */
@media (max-width: 768px) {
    .nav-list a {
        position: relative;
    }
    
    .nav-list a::after,
    .nav-list a::before,
    .nav-list a.active::after,
    .nav-list a.active::before {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
        background: transparent !important;
        border: none !important;
    }
    
    /* Optional: Add different visual indicator for active page */
    .nav-list a.active {
        color: #2a7f8f !important;
        font-weight: 700 !important;
        background-color: rgba(42, 127, 143, 0.1);
        border-radius: 6px;
    }
}














/* Who We Are Section */
.we-get-it {
    padding: 80px 0;
    background-color: var(--light-blue);
    text-align: center;
}

.we-get-it .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.we-get-it h2 {
    font-size: 2.5rem;
    color: var(--teal);
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}

.content-wrapper {
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.we-get-it .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 25px;
    text-align: justify;
    text-justify: inter-word;
}

.we-get-it .lead:last-child {
    margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .we-get-it {
        padding: 60px 0;
    }
    
    .we-get-it h2 {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .we-get-it .lead {
        font-size: 1.1rem;
        line-height: 1.7;
        text-align: left;
        text-justify: auto;
    }
    
    .content-wrapper {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .we-get-it {
        padding: 50px 0;
    }
    
    .we-get-it h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .we-get-it .lead {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .we-get-it .container {
        padding: 0 15px;
    }
}