:root {
    --primary-green: #4CAF50;
    --primary-green-dark: #388E3C;
    --primary-green-light: #81C784;
    --white: #FFFFFF;
    --dark-grey: #333333;
    --medium-grey: #666666;
    --light-grey: #F0F0F0;
    --light-grey-dark: #E0E0E0;
    --accent-yellow: #FFC107;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.2s ease-in-out;
    --transition-slow: 0.3s ease-in-out;
    --font-primary: 'Montserrat', Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-grey);
    background-color: var(--white);
}

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

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

ul {
    list-style: none;
}

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

.section {
    padding: 80px 0;
}

.section-bg {
    background-color: var(--light-grey);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-grey);
}

.section-title.center {
    text-align: center;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--medium-grey);
    margin-bottom: 3rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

.btn-primary:hover {
    background-color: var(--primary-green-dark);
    border-color: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-secondary:hover {
    background-color: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-outline:hover {
    background-color: var(--primary-green);
    color: var(--white);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

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

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

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--dark-grey);
    position: relative;
    transition: background-color var(--transition-fast);
}

.hamburger-icon::before,
.hamburger-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--dark-grey);
    left: 0;
    transition: transform var(--transition-fast);
}

.hamburger-icon::before {
    top: -7px;
}

.hamburger-icon::after {
    top: 7px;
}

.mobile-menu-toggle.active .hamburger-icon {
    background-color: transparent;
}

.mobile-menu-toggle.active .hamburger-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-toggle.active .hamburger-icon::after {
    transform: rotate(-45deg);
    top: 0;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.nav-link {
    font-weight: 500;
    color: var(--dark-grey);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-green);
    transform: scaleX(0);
    transition: transform var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--dark-grey);
}

.phone-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-green);
}

.nav-phone:hover {
    color: var(--primary-green);
}

.nav-btn {
    padding: 10px 20px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 60px 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    padding: 140px 0 80px;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

/* About Brief Section */
.about-brief-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-brief-text {
    font-size: 1.125rem;
    color: var(--medium-grey);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-features {
    margin-bottom: 2rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-weight: 500;
    border-bottom: 1px solid var(--light-grey-dark);
}

.about-features li:last-child {
    border-bottom: none;
}

.check-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-green);
    flex-shrink: 0;
}

.about-brief-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-icon-wrapper {
    width: 200px;
    height: 200px;
    background-color: var(--light-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-icon-wrapper svg {
    width: 100px;
    height: 100px;
    color: var(--primary-green);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    display: block;
    background-color: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-grey-dark);
    transition: all var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-icon svg {
    width: 60px;
    height: 60px;
    color: var(--primary-green);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--dark-grey);
}

.service-description {
    color: var(--medium-grey);
    line-height: 1.6;
}

.services-cta {
    text-align: center;
}

.service-card-detailed {
    padding: 2.5rem;
}

.service-includes {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-grey-dark);
}

.service-includes li {
    padding: 8px 0;
    color: var(--medium-grey);
    position: relative;
    padding-left: 24px;
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
}

/* Why Choose Section */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-choose-item {
    text-align: center;
    padding: 2rem;
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: var(--light-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.why-choose-item:hover .why-choose-icon {
    background-color: var(--primary-green);
    transform: translateY(-3px);
}

.why-choose-icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary-green);
    transition: color var(--transition-normal);
}

.why-choose-item:hover .why-choose-icon svg {
    color: var(--white);
}

.why-choose-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.why-choose-text {
    color: var(--medium-grey);
    font-size: 0.95rem;
}

/* Service Area Section */
.service-area-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.service-area-map {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    color: var(--medium-grey);
}

.map-placeholder svg {
    width: 80px;
    height: 80px;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.service-area-list ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.service-area-list li {
    padding: 12px 16px;
    background-color: var(--white);
    border-radius: 8px;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
}

.service-area-more {
    margin-top: 1.5rem;
    font-weight: 600;
    color: var(--primary-green);
    font-size: 1.125rem;
}

/* CTA Section */
.cta-box {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    color: var(--white);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.cta-contact-info {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 1rem;
    opacity: 0.9;
}

.cta-contact-info a {
    color: var(--white);
    text-decoration: underline;
}

.cta-note {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Why Professional Section */
.why-professional-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-professional-intro {
    font-size: 1.125rem;
    color: var(--medium-grey);
    margin-bottom: 2rem;
}

.why-professional-list li {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--light-grey-dark);
}

.why-professional-list li:last-child {
    border-bottom: none;
}

.list-icon {
    width: 28px;
    height: 28px;
    color: var(--primary-green);
    flex-shrink: 0;
}

.why-professional-list strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.why-professional-list p {
    color: var(--medium-grey);
    font-size: 0.95rem;
}

.why-professional-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-professional-image svg {
    width: 200px;
    height: 200px;
    color: var(--light-grey-dark);
}

/* Process Timeline */
.timeline {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--light-grey-dark);
    transform: translateY(-50%);
    z-index: 0;
}

.timeline-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 1rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1rem;
    position: relative;
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: var(--white);
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step-icon svg {
    width: 30px;
    height: 30px;
    color: var(--primary-green);
}

.step-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-description {
    color: var(--medium-grey);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* About Story Section */
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-story-text {
    font-size: 1.125rem;
    color: var(--medium-grey);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-quote {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--light-grey);
    border-left: 4px solid var(--primary-green);
    border-radius: 0 8px 8px 0;
}

.about-quote p {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--dark-grey);
    margin-bottom: 0.5rem;
}

.about-quote cite {
    color: var(--medium-grey);
    font-size: 0.95rem;
}

.about-story-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-story-image svg {
    width: 200px;
    height: 200px;
    color: var(--light-grey-dark);
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    background-color: var(--light-grey);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.team-title {
    color: var(--primary-green);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--medium-grey);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Certifications Section */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

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

.certification-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background-color: var(--light-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certification-icon svg {
    width: 35px;
    height: 35px;
    color: var(--primary-green);
}

.certification-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.certification-text {
    color: var(--medium-grey);
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-track {
    display: flex;
    gap: 2rem;
    overflow: hidden;
}

.testimonial-block {
    flex: 0 0 100%;
    background-color: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.quote-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem;
    color: var(--primary-green);
    opacity: 0.5;
}

.quote-icon svg {
    width: 100%;
    height: 100%;
}

.quote-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--dark-grey);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.client-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.client-name {
    font-weight: 600;
    color: var(--dark-grey);
}

.client-city {
    color: var(--medium-grey);
    font-size: 0.95rem;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-green);
    background-color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.carousel-btn:hover {
    background-color: var(--primary-green);
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
    color: var(--primary-green);
    transition: color var(--transition-normal);
}

.carousel-btn:hover svg {
    color: var(--white);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: var(--light-grey-dark);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.carousel-dot.active {
    background-color: var(--primary-green);
    transform: scale(1.2);
}

/* Featured Article */
.featured-article {
    max-width: 900px;
    margin: 0 auto;
}

.featured-label {
    display: inline-block;
    background-color: var(--primary-green);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.featured-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--dark-grey);
}

.featured-image {
    margin-bottom: 2rem;
}

.featured-image img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.featured-image figcaption {
    color: var(--medium-grey);
    font-size: 0.95rem;
    font-style: italic;
    text-align: center;
}

.featured-body h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: var(--dark-grey);
}

.featured-body h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    color: var(--dark-grey);
}

.featured-body p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--medium-grey);
    margin-bottom: 1.5rem;
}

.featured-body ul {
    margin-bottom: 1.5rem;
}

.featured-body li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--medium-grey);
    font-size: 1.05rem;
}

.featured-body li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1;
}

.featured-quote {
    background-color: var(--light-grey);
    border-left: 4px solid var(--primary-green);
    padding: 1.5rem 2rem;
    border-radius: 0 8px 8px 0;
    margin: 2rem 0;
}

.featured-quote p {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--dark-grey);
    margin-bottom: 0;
}

.featured-cta {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
}

.featured-cta p {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.featured-cta .btn {
    background-color: var(--white);
    color: var(--primary-green);
}

.featured-cta .btn:hover {
    background-color: var(--light-grey);
}

/* Blog Cards */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-thumbnail {
    height: 180px;
    background-color: var(--light-grey);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-thumbnail svg {
    width: 60px;
    height: 60px;
    color: var(--primary-green);
}

.blog-content {
    padding: 1.5rem;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--dark-grey);
}

.blog-excerpt {
    color: var(--medium-grey);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.95rem;
}

.read-more:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-intro {
    font-size: 1.125rem;
    color: var(--medium-grey);
    margin-bottom: 2rem;
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--light-grey-dark);
}

.contact-method:last-child {
    border-bottom: none;
}

.contact-method-icon {
    width: 50px;
    height: 50px;
    background-color: var(--light-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-green);
}

.contact-method-details h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-link {
    color: var(--primary-green);
    font-weight: 500;
    font-size: 1.125rem;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-note {
    display: block;
    font-size: 0.875rem;
    color: var(--medium-grey);
    margin-top: 0.25rem;
}

.contact-address {
    font-style: normal;
    color: var(--dark-grey);
    line-height: 1.6;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    color: var(--dark-grey);
    font-size: 0.95rem;
}

.contact-map {
    margin-top: 2rem;
}

.map-placeholder {
    background-color: var(--light-grey);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
}

/* Contact Form */
.contact-form-wrapper {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.form-intro {
    color: var(--medium-grey);
    margin-bottom: 2rem;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--dark-grey);
}

.required {
    color: #e53935;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--light-grey-dark);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--dark-grey);
    background-color: var(--white);
    transition: all var(--transition-fast);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--medium-grey);
    margin-top: 1rem;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

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

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--primary-green);
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-links li {
    padding: 8px 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

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

.social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 1.5rem;
}

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

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

.social-links svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.trust-badge {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--white);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-green-dark);
    transform: translateY(-3px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-brief-grid,
    .about-story-grid,
    .why-professional-grid,
    .contact-grid {
        gap: 2rem;
    }
    
    .service-area-content {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        height: 70px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 24px 24px;
        box-shadow: var(--shadow-lg);
        transition: right var(--transition-slow);
    }
    
    .main-navigation.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    
    .nav-link {
        display: block;
        padding: 16px 0;
        font-size: 1.125rem;
        border-bottom: 1px solid var(--light-grey-dark);
        width: 100%;
    }
    
    .nav-cta {
        flex-direction: column;
        width: 100%;
        margin-top: 1.5rem;
        gap: 1rem;
    }
    
    .nav-phone {
        justify-content: center;
        padding: 16px;
        background-color: var(--light-grey);
        border-radius: 8px;
    }
    
    .nav-btn {
        width: 100%;
    }
    
    .hero {
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .page-hero {
        padding: 120px 0 60px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .about-brief-grid,
    .about-story-grid,
    .why-professional-grid {
        grid-template-columns: 1fr;
    }
    
    .about-brief-image,
    .about-story-image,
    .why-professional-image {
        order: -1;
    }
    
    .services-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline {
        flex-direction: column;
    }
    
    .timeline::before {
        top: 0;
        bottom: 0;
        left: 30px;
        right: auto;
        width: 2px;
        height: 100%;
        transform: none;
    }
    
    .timeline-step {
        display: flex;
        text-align: left;
        padding-left: 70px;
        padding-bottom: 2rem;
    }
    
    .timeline-step:last-child {
        padding-bottom: 0;
    }
    
    .step-number {
        position: absolute;
        left: 0;
    }
    
    .step-icon {
        margin: 0;
        position: absolute;
        left: 10px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        padding: 2rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .service-area-list ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .featured-title {
        font-size: 1.75rem;
    }
    
    .testimonial-block {
        padding: 1.5rem;
    }
    
    .quote-text {
        font-size: 1rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
