/* Services Page Styles */
.services-hero {
    text-align: center;
    padding: 4rem 1rem;
    background: linear-gradient(to bottom, rgb(255 255 255 / 0%), rgb(255 255 255 / 65%)), url(../images/poop_cover.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.services-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.service-type-selector {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.service-type-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid #007bff;
    background: transparent;
    color: #007bff;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-type-btn:hover {
    background: #007bff;
    color: white;
}

.service-type-btn.active {
    background: #007bff;
    color: white;
}

/* Service Content Sections */
.service-content {
    display: none;
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-content.active {
    display: block;
}

.service-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.service-intro h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.service-subtitle {
    font-size: 1.2rem;
    color: #666;
}

/* Feature Cards */
.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Process Steps */
.service-process {
    margin-bottom: 4rem;
}

.service-process h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

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

.process-step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #007bff;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    margin-bottom: 1rem;
}

.process-step h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: #666;
}

/* Pricing Cards */
.service-pricing {
    margin-bottom: 4rem;
}

.service-pricing h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid #007bff;
}

.pricing-card h4 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-card li {
    margin-bottom: 0.5rem;
    color: #666;
}

/* Commercial Benefits */
.commercial-benefits {
    margin-bottom: 4rem;
}

.commercial-benefits h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem 2rem;
    justify-items: center;
    align-items: stretch;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 0.5rem;
    box-sizing: border-box;
}

.benefit-item {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 2rem 1rem 1.2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 220px;
    width: 100%;
    max-width: 320px;
    box-sizing: border-box;
    transition: transform 0.2s, box-shadow 0.2s;
}

.benefit-item:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
}

.benefit-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 1.1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.07));
}

.benefit-item h4 {
    font-size: 1.13rem;
    font-weight: 700;
    color: #222;
    margin-top: 0.2rem;
    margin-bottom: 0.7rem;
    font-family: 'Inter', sans-serif;
}

.benefit-item p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 900px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem 0.7rem;
        max-width: 98vw;
    }

    .benefit-item {
        max-width: 98vw;
        padding: 1.2rem 0.5rem 1rem 0.5rem;
    }
}

@media (max-width: 600px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 0.7rem 0;
        padding: 0;
    }

    .benefit-item {
        max-width: 100vw;
        width: 100%;
        padding: 1rem 0.2rem 0.7rem 0.2rem;
    }

    .benefit-icon {
        width: 38px;
        height: 38px;
        margin-bottom: 0.7rem;
    }

    .benefit-item h4 {
        font-size: 0.98rem;
    }

    .benefit-item p {
        font-size: 0.95rem;
    }
}

/* Commercial Contact */
.commercial-contact {
    text-align: center;
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 4rem;
}

.commercial-contact h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
}

.commercial-contact p {
    color: #666;
    margin-bottom: 2rem;
}

/* CTA Button */
.cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cta-btn:hover {
    background: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2rem;
    }

    .service-type-selector {
        flex-direction: column;
        align-items: center;
    }

    .service-type-btn {
        width: 100%;
        max-width: 300px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .service-features,
    .process-steps,
    .pricing-cards,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-content.active {
    animation: fadeIn 0.5s ease-out;
}

/* Commercial Offerings Section */
.commercial-offerings {
    background: linear-gradient(90deg, #aee6ef 0%, #7fd7e7 100%);
    border-radius: 18px;
    padding: 3rem 1rem 2rem 1rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    text-align: center;
    animation: fadeIn 0.7s;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.offerings-title {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 2.1rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 0.5rem;
}

.offerings-subtitle {
    color: #222;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem 2rem;
    justify-items: center;
    align-items: stretch;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 0.5rem;
    box-sizing: border-box;
}

.offering-card {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 2rem 1rem 1.2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
    min-height: 180px;
    width: 100%;
    max-width: 320px;
    box-sizing: border-box;
}

.offering-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
}

.offering-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.07));
}

.offering-card span {
    font-size: 1.13rem;
    font-weight: 600;
    color: #222;
    margin-top: 0.2rem;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 900px) {
    .commercial-offerings {
        padding: 1.5rem 0.5rem 1.2rem 0.5rem;
    }

    .offerings-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem 0.7rem;
        max-width: 98vw;
    }

    .offering-card {
        max-width: 98vw;
        padding: 1.2rem 0.5rem 1rem 0.5rem;
    }
}

@media (max-width: 600px) {
    .commercial-offerings {
        padding: 0.7rem 0.1rem 0.5rem 0.1rem;
    }

    .offerings-grid {
        grid-template-columns: 1fr;
        gap: 0.7rem 0;
        padding: 0;
    }

    .offering-card {
        max-width: 100vw;
        width: 100%;
        padding: 1rem 0.2rem 0.7rem 0.2rem;
    }

    .offering-icon {
        width: 40px;
        height: 40px;
    }

    .offering-card span {
        font-size: 0.98rem;
    }
}

/* Why Us Section */
.why-us-section {
    background: linear-gradient(90deg, #aee6ef 0%, #7fd7e7 100%);
    border-radius: 18px;
    padding: 3rem 1rem 2rem 1rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    text-align: center;
    animation: fadeIn 0.7s;
}

.why-us-header {
    margin-bottom: 2.5rem;
}

.why-us-overline {
    text-transform: uppercase;
    font-size: 0.95rem;
    color: #007bff;
    font-weight: 700;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 0.3rem;
}

.why-us-title {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 2.1rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 0.5rem;
}

.why-us-subtitle {
    color: #222;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem 2rem;
    justify-items: center;
    align-items: start;
}

.why-us-card {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 2rem 1rem 1.2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
    min-height: 240px;
}

.why-us-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
}

.why-us-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.07));
}

.why-us-card h4 {
    font-size: 1.13rem;
    font-weight: 700;
    color: #222;
    margin-top: 0.2rem;
    margin-bottom: 0.7rem;
    font-family: 'Inter', sans-serif;
}

.why-us-card p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 900px) {
    .why-us-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.5rem 1rem;
    }

    .why-us-card {
        padding: 1.2rem 0.5rem 1rem 0.5rem;
    }
}

@media (max-width: 600px) {
    .why-us-section {
        padding: 2rem 0.2rem 1.2rem 0.2rem;
    }

    .why-us-title {
        font-size: 1.3rem;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 1rem 0.5rem;
    }

    .why-us-icon {
        width: 40px;
        height: 40px;
    }

    .why-us-card h4 {
        font-size: 1rem;
    }

    .why-us-card p {
        font-size: 0.95rem;
    }
}

/* Service Day Section */
.service-day-section {
    background: linear-gradient(90deg, #eafcff 0%, #b6e6f7 100%);
    border-radius: 18px;
    padding: 3rem 1rem 2rem 1rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    text-align: center;
    animation: fadeIn 0.7s;
}

.service-day-header {
    margin-bottom: 2.5rem;
}

.service-day-overline {
    text-transform: uppercase;
    font-size: 0.95rem;
    color: #007bff;
    font-weight: 700;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 0.3rem;
}

.service-day-title {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 2.1rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 0.5rem;
}

.service-day-subtitle {
    color: #222;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.service-day-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem 2rem;
    justify-items: center;
    align-items: start;
}

.service-day-card {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 2rem 1rem 1.2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
    min-height: 280px;
    text-align: left;
    max-width: 400px;
}

.service-day-card.highlight {
    border: 2px solid #007bff;
    background: #fafdff;
    box-shadow: 0 6px 24px rgba(0, 123, 255, 0.07);
}

.service-day-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
}

.service-day-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.07));
}

.service-day-card h4 {
    font-size: 1.13rem;
    font-weight: 700;
    color: #222;
    margin-top: 0.2rem;
    margin-bottom: 0.7rem;
    font-family: 'Inter', sans-serif;
}

.service-day-card p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 900px) {
    .service-day-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.5rem 1rem;
    }

    .service-day-card {
        padding: 1.2rem 0.5rem 1rem 0.5rem;
    }
}

@media (max-width: 600px) {
    .service-day-section {
        padding: 2rem 0.2rem 1.2rem 0.2rem;
    }

    .service-day-title {
        font-size: 1.3rem;
    }

    .service-day-grid {
        grid-template-columns: 1fr;
        gap: 1rem 0.5rem;
    }

    .service-day-icon {
        width: 40px;
        height: 40px;
    }

    .service-day-card h4 {
        font-size: 1rem;
    }

    .service-day-card p {
        font-size: 0.95rem;
    }
}

/* Process Section (Stepper) */
.process-section {
    background: linear-gradient(90deg, #eafcff 0%, #b6e6f7 100%);
    border-radius: 18px;
    padding: 3rem 1rem 2rem 1rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    animation: fadeIn 0.7s;
}

.process-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.process-overline {
    text-transform: uppercase;
    font-size: 0.95rem;
    color: #007bff;
    font-weight: 700;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 0.3rem;
}

.process-title {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 2.1rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 0.5rem;
}

.process-subtitle {
    color: #222;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.process-flex {
    display: flex;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: flex-start;
}

.process-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 260px;
}

.process-step-btn {
    display: flex;
    align-items: center;
    font-size: 1.15rem;
    font-weight: 500;
    color: #222;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    margin-bottom: 1.2rem;
    transition: color 0.2s;
    padding: 0.2rem 0.5rem;
}

.process-step-btn span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    background: #e0e6ea;
    color: #007bff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.1rem;
    margin-right: 1rem;
    transition: background 0.2s, color 0.2s;
}

.process-step-btn.active {
    color: #b02a2a;
    font-weight: 700;
}

.process-step-btn.active span {
    background: #b02a2a;
    color: #fff;
}

.process-step-content {
    flex: 1;
    min-width: 0;
    border-left: 1px solid #dbeafe;
    padding-left: 2.5rem;
    min-height: 260px;
    display: flex;
    align-items: center;
}

.process-step-panel {
    display: none;
    animation: fadeIn 0.4s;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.process-step-panel.active {
    display: block;
}

.process-step-panel h4 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
    font-family: 'Montserrat', 'Inter', sans-serif;
}

.process-step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.2rem;
    display: block;
}

.process-step-panel p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 900px) {
    .process-flex {
        flex-direction: column;
        gap: 1.5rem;
    }

    .process-step-content {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #dbeafe;
        padding-top: 1.5rem;
    }

    .process-steps-list {
        display: flex;
        flex-direction: row;
        min-width: 0;
        justify-content: center;
        gap: 0.5rem;
    }

    .process-step-btn {
        flex-direction: column;
        font-size: 0.98rem;
        margin-bottom: 0;
        padding: 0.2rem 0.2rem;
    }

    .process-step-btn span {
        margin-right: 0;
        margin-bottom: 0.2rem;
    }
}

@media (max-width: 600px) {
    .process-section {
        padding: 1.2rem 0.1rem 0.7rem 0.1rem;
    }

    .process-title {
        font-size: 1.1rem;
    }

    .process-flex {
        gap: 0.7rem;
    }

    .process-steps-list {
        min-width: 0;
        width: 100%;
        overflow-x: auto;
        display: flex;
        /* flex-direction: row; */
        justify-content: center;
        gap: 0.2rem;
        padding-bottom: 0.5rem;
        margin-bottom: 0.5rem;
        scrollbar-width: thin;
    }

    .process-step-btn {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: 0.85rem;
        padding: 0.1rem 0.1rem;
        /* min-width: 80px; */
        max-width: 50px;
        flex: 1 0 80px;
        white-space: normal;
    }

    .process-step-btn span {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 0.2rem auto;
    }

    .process-step-content {
        padding-left: 0.2rem;
        padding-top: 0.5rem;
        min-height: 120px;
        border-top: 1px solid #dbeafe;
        border-left: none;
    }

    .process-step-panel h4 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
        text-align: center;
    }

    .process-step-icon {
        width: 28px;
        height: 28px;
        margin-bottom: 0.5rem;
    }

    .process-step-panel p {
        font-size: 0.92rem;
        text-align: center;
    }

    .process-step-btn p {
        display: none;
    }
}

/* Financial Benefits Section */
.financial-benefits-section {
    background: linear-gradient(90deg, #eafcff 0%, #b6e6f7 100%);
    border-radius: 18px;
    padding: 3rem 1rem 2rem 1rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    animation: fadeIn 0.7s;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.financial-benefits-flex {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.financial-benefits-text {
    flex: 1 1 340px;
    min-width: 260px;
    max-width: 600px;
}

.financial-benefits-overline {
    text-transform: uppercase;
    font-size: 0.95rem;
    color: #007bff;
    font-weight: 700;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 0.3rem;
}

.financial-benefits-title {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 2.1rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 0.5rem;
}

.financial-benefits-text p {
    color: #222;
    font-size: 1.13rem;
    line-height: 1.7;
    margin-top: 1.2rem;
}

.financial-benefits-image {
    flex: 1 1 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    max-width: 420px;
}

.financial-benefits-image img {
    width: 100%;
    max-width: 380px;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(30, 144, 255, 0.10);
}

@media (max-width: 900px) {
    .financial-benefits-flex {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .financial-benefits-image img {
        max-width: 98vw;
    }

    .financial-benefits-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 600px) {
    .financial-benefits-section {
        padding: 1.2rem 0.1rem 0.7rem 0.1rem;
    }

    .financial-benefits-title {
        font-size: 1.1rem;
    }

    .financial-benefits-text p {
        font-size: 0.98rem;
    }
}

/* True Professionals Section */
.true-professionals-section {
    background: linear-gradient(90deg, #eafcff 0%, #b6e6f7 100%);
    border-radius: 18px;
    padding: 3rem 1rem 2rem 1rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    animation: fadeIn 0.7s;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.true-professionals-flex {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.true-professionals-image {
    flex: 1 1 340px;
    min-width: 260px;
    max-width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.true-professionals-image img {
    width: 100%;
    max-width: 420px;
    object-fit: cover;
    object-position: bottom;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(30, 144, 255, 0.10);
}

.true-professionals-text {
    flex: 1 1 320px;
    min-width: 220px;
    max-width: 520px;
}

.true-professionals-overline {
    text-transform: uppercase;
    font-size: 0.95rem;
    color: #007bff;
    font-weight: 700;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 0.3rem;
}

.true-professionals-title {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 2.1rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 0.5rem;
}

.true-professionals-text p {
    color: #222;
    font-size: 1.13rem;
    line-height: 1.7;
    margin-top: 1.2rem;
}

@media (max-width: 900px) {
    .true-professionals-flex {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .true-professionals-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 600px) {
    .true-professionals-section {
        padding: 1.2rem 0.1rem 0.7rem 0.1rem;
    }

    .true-professionals-title {
        font-size: 1.1rem;
    }

    .true-professionals-text p {
        font-size: 0.98rem;
    }
}

/* Commercial Contact Form Section */
.commercial-contact-form-section {
    background: linear-gradient(90deg, #eafcff 0%, #b6e6f7 100%);
    border-radius: 18px;
    padding: 3rem 1rem 2rem 1rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    animation: fadeIn 0.7s;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.commercial-contact-form-section .contact {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(30, 144, 255, 0.07);
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    text-align: center;
}

.commercial-contact-form-section .contact h2 {
    font-size: 2rem;
    color: #1761a0;
    font-weight: 800;
    margin-bottom: 1.2rem;
}

.commercial-contact-form-section .contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 1rem;
}

.commercial-contact-form-section .contact-info a {
    color: #1761a0;
    font-weight: 600;
    text-decoration: none;
}

.commercial-contact-form-section .contact-info a:hover {
    text-decoration: underline;
}

.commercial-contact-form-section form {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-top: 1.2rem;
}

.commercial-contact-form-section input,
.commercial-contact-form-section textarea {
    border: 1.5px solid #1e90ff;
    border-radius: 10px;
    padding: 0.9em 1em;
    font-size: 1rem;
    background: #f6f8fa;
    color: #222;
    outline: none;
    transition: border 0.18s;
}

.commercial-contact-form-section input:focus,
.commercial-contact-form-section textarea:focus {
    border-color: #1761a0;
}

.commercial-contact-form-section button.btn {
    background: linear-gradient(90deg, #ffb347 0%, #ff4f81 100%);
    color: #fff;
    border-radius: 28px;
    padding: 0.8em 2em;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    box-shadow: 0 2px 10px rgba(255, 79, 129, 0.08);
    transition: background 0.2s;
    cursor: pointer;
    margin-top: 0.7rem;
}

.commercial-contact-form-section button.btn:hover {
    background: #1761a0;
}

.commercial-contact-form-section .adatkezeles-sor,
.commercial-contact-form-section .adatkezeles-sor-2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.98rem;
    margin-bottom: 0.2rem;
    justify-content: flex-start;
}

.commercial-contact-form-section .adatkezeles-sor label,
.commercial-contact-form-section .adatkezeles-sor-2 label {
    font-weight: 400;
    color: #444;
}

.commercial-contact-form-section #submit-message {
    color: #1761a0;
    font-weight: 600;
    margin-top: 1.2rem;
}

.commercial-contact-form-section .secondary-message {
    color: #5fa8d3;
    font-size: 0.98rem;
    font-weight: 400;
}

.commercial-contact-form-section .hidden {
    display: none;
}

@media (max-width: 900px) {
    .commercial-contact-form-section {
        padding: 1.5rem 0.5rem 1.2rem 0.5rem;
    }

    .commercial-contact-form-section .contact {
        padding: 1.2rem 0.5rem 1rem 0.5rem;
    }

    .commercial-contact-form-section .contact h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 600px) {
    .commercial-contact-form-section {
        padding: 0.7rem 0.1rem 0.5rem 0.1rem;
    }

    .commercial-contact-form-section .contact {
        padding: 0.7rem 0.1rem 0.7rem 0.1rem;
    }

    .commercial-contact-form-section .contact h2 {
        font-size: 1.05rem;
    }

    .commercial-contact-form-section input,
    .commercial-contact-form-section textarea {
        font-size: 0.95rem;
    }
}

/* Service Areas Section */
.service-areas-section {
    background: linear-gradient(90deg, #eafcff 0%, #b6e6f7 100%);
    border-radius: 18px;
    padding: 3rem 1rem 2rem 1rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    animation: fadeIn 0.7s;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-areas-flex {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.service-areas-text {
    flex: 1 1 320px;
    min-width: 220px;
    max-width: 420px;
    font-size: 1.08rem;
    color: #222;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-areas-text h3 {
    font-size: 2rem;
    font-weight: 900;
    color: #1761a0;
    margin-bottom: 1.1rem;
    letter-spacing: -0.02em;
}

.service-areas-intro {
    color: #5fa8d3;
    font-size: 1.08rem;
    font-weight: 600;
    margin-bottom: 1.1rem;
}

.service-areas-list {
    margin: 0 0 1.1rem 0.2rem;
    padding: 0;
    color: #1761a0;
    font-weight: 600;
    font-size: 1.08rem;
    list-style: none;
}

.service-areas-list li {
    margin-bottom: 0.6rem;
    position: relative;
    padding-left: 1.7em;
}

.service-areas-list li::before {
    content: "\1F4CD";
    position: absolute;
    left: 0;
    color: #007bff;
    font-size: 1.1em;
    top: 0.1em;
}

.service-areas-note {
    color: #7fa7c7;
    font-size: 0.98rem;
    margin-top: 0.7rem;
    margin-bottom: 0.2rem;
}

.service-areas-note a {
    font-weight: 600;
    transition: color 0.18s;
}

.service-areas-note a:hover {
    color: #ffffff;

}

.service-areas-map {
    flex: 1 1 320px;
    min-width: 220px;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.service-areas-map iframe {
    width: 100%;
    height: 320px;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(30, 144, 255, 0.07);
    border: 0;
    min-width: 220px;
    min-height: 220px;
}

.service-areas-map-note {
    text-align: center;
    color: #888;
    font-size: 0.92rem;
    margin-top: 0.5rem;
    font-style: italic;
}

.service-areas-btn {
    display: inline-block;
    margin-top: 0.7rem;
    background: linear-gradient(90deg, #ffb347 0%, #ff4f81 100%);
    color: #fff;
    border-radius: 28px;
    padding: 0.6em 1.6em;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(255, 79, 129, 0.08);
    border: none;
    font-size: 1.1rem;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
    cursor: pointer;
}

.service-areas-btn:hover {
    background: #1761a0;
    color: #fff;
}

@media (max-width: 900px) {
    .service-areas-flex {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
    }

    .service-areas-map {
        margin: 0 auto;
    }

    .service-areas-section {
        padding: 1.5rem 0.5rem 1.2rem 0.5rem;
    }

    .service-areas-text h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 600px) {
    .service-areas-section {
        padding: 0.7rem 0.1rem 0.5rem 0.1rem;
    }

    .service-areas-map iframe {
        height: 220px;
        min-height: 120px;
    }

    .service-areas-text {
        font-size: 0.98rem;
    }

    .service-areas-list {
        font-size: 0.98rem;
    }

    .service-areas-map-note {
        font-size: 0.85rem;
    }

    .service-areas-btn {
        width: 100%;
        text-align: center;
        padding: 0.7em 0;
        font-size: 1rem;
    }
}

/* Footer Styles */
.footer-edited-by {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.3rem;
    text-align: center;
    font-weight: 500;
}

.footer-edited-by a,
.footer a {
    color: #fff;
    text-decoration: underline;
    font-weight: 700;
    transition: color 0.18s;
}

.footer-edited-by a:hover,
.footer a:hover {
    color: #ffb347;
}

.footer-social-links {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
}

.footer-social-icon {
    color: #fff;
    font-size: 1.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.18s, transform 0.18s, filter 0.18s;
    text-decoration: none;
    border-radius: 50%;
    padding: 0.2em;
}

.footer-social-icon:hover {
    color: #ffb347;
    filter: drop-shadow(0 2px 8px #ffb347);
    transform: scale(1.13) rotate(-6deg);
}

.footer-socials img {
    display: none !important;
}

#facebook-link {
    text-decoration: none !important;
}

#facebook-link:hover {
    color: #3246b3;
    filter: drop-shadow(0 2px 8px #003cff);
}

#linkedin-link {
    text-decoration: none !important;
}

#linkedin-link:hover {
    color: #0077b5;
    filter: drop-shadow(0 2px 8px #0077b5);
}

#instagram-link {
    text-decoration: none !important;
}

#instagram-link:hover {
    color: #c32aa3;
    filter: drop-shadow(0 2px 8px #c32aa3);
}

#youtube-link {
    text-decoration: none !important;
}

#youtube-link:hover {
    color: #ff0000;
    filter: drop-shadow(0 2px 8px #ff0000);
}

.nav-cta-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 1rem;
}

.nav-cta-container .cta-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-cta-container .cta-btn:hover {
    background-color: var(--accent-color-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .nav-cta-container {
        margin: 1rem 0;
    }
    
    .nav-cta-container .cta-btn {
        width: 100%;
        text-align: center;
    }
}