/* =====================================================
   EXIT PRO - PREMIUM MINIMAL DESIGN
   Premium contractor aesthetic (Apple/Tesla/Built)
   ===================================================== */

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

:root {
    --black: #0a0a0a;
    --white: #ffffff;
    --orange: #0d7b4d;
    --gray: #1a1a1a;
    --green: #0d7b4d;
    --header-height: 88px;
    --green-bright: #14945e;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.55rem 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: block;
    flex: 0 0 auto;
    width: 158px;
    padding: 0;
    line-height: 0;
    background: transparent;
    border: none;
    border-radius: 0;
}

.logo img {
    display: block;
    width: 100%;
    height: auto;
    max-width: none;
    max-height: none;
    min-width: 0;
    opacity: 1;
    transition: none;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.7;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.nav-menu a:hover {
    opacity: 1;
    color: var(--orange);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--white);
    transition: 0.3s ease;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 4rem;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.52);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 40px;
    animation: fadeInUp 1s ease 0.3s both;
    margin-top: 0;
}

.hero-content h1 {
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    max-width: 1000px;
}

.hero-content p {
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    letter-spacing: 0.01em;
}

.hero-service-area {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255, 107, 53, 0.9);
    margin-top: -2rem;
    margin-bottom: 3rem;
    letter-spacing: 0.02em;
}

.button {
    display: inline-block;
    padding: 1.45rem 3.9rem;
    background-color: var(--orange);
    color: var(--black);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 2px solid var(--orange);
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.button:hover {
    background-color: var(--green-bright);
    border-color: var(--green-bright);
    color: var(--black);
    transform: translateY(-2px);
}

.button-outline {
    background-color: transparent;
    color: var(--orange);
}

.button-outline:hover {
    background-color: var(--green-bright);
    border-color: var(--green-bright);
    color: var(--black);
}

/* ===== SECTIONS ===== */
.section {
    padding: 10rem 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.section h2 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

.section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.section p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* ===== TRUST SECTION ===== */
.trust-section {
    padding: 8rem 40px 4rem;
    text-align: center;
}

.trust-section h2 {
    margin-bottom: 1.5rem;
}

.trust-subtitle {
    max-width: 980px;
    margin: 0 auto 4rem;
    font-size: 1.3rem;
    line-height: 1.8;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.trust-icon {
    width: 52px;
    height: 52px;
    border: 1.5px solid rgba(13, 123, 77, 0.65);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.25rem;
}

/* ===== APPROACH SECTION ===== */
.approach {
    background-color: var(--black);
    padding: 12rem 40px;
    margin-top: 2rem;
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7rem;
    align-items: center;
}

.section-image {
    overflow: hidden;
    border-radius: 0;
}

.section-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.section-image:hover img {
    transform: scale(1.02);
}

.section-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.section-content p {
    font-size: 1.25rem;
    max-width: 600px;
}

/* ===== SLIDESHOW SECTION ===== */
.slideshow-section {
    background-color: var(--black);
    padding: 12rem 40px;
}

.slideshow-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 4rem;
}

.slideshow-intro {
    text-align: center;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.projects-summary {
    max-width: 980px;
    margin: 3rem auto 0;
    text-align: center;
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.82);
}

.slideshow-container {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.slideshow-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    height: 0;
    overflow: hidden;
    background-color: var(--gray);
}

.slideshow-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slideshow-image.active {
    opacity: 1;
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    .slideshow-image {
        transition: none;
    }
    
    .slideshow-image.active {
        opacity: 1;
    }
}

/* ===== WHY EXIT PRO SECTION ===== */
.why-exitpro {
    background-color: var(--black);
    padding: 12rem 40px;
}

.why-exitpro .section-grid {
    gap: 10rem;
}

.why-exitpro .section-content h2 {
    font-size: 4rem;
    margin-bottom: 2.5rem;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 0 0 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.stat-number {
    font-size: clamp(2.6rem, 4vw, 4.8rem);
    font-weight: 900;
    line-height: 0.95;
    color: var(--white);
    letter-spacing: -0.04em;
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.72);
}

.why-exitpro .section-content p {
    font-size: 1.25rem;
    margin-bottom: 1.8rem;
    line-height: 1.8;
}

/* ===== SERVICES SECTION ===== */
.services {
    background-color: var(--black);
    padding: 12rem 40px;
}

.services h2 {
    margin-bottom: 7rem;
    font-size: 4.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1400px;
}

.service-item {
    padding: 5.2rem 4.4rem;
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
    border-right: 2px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.service-item:nth-child(3n) {
    border-right: none;
}

.service-item:nth-last-child(-n+3) {
    border-bottom: none;
}

.service-item h3 {
    font-size: 2.1rem;
    color: var(--orange);
    margin-bottom: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-item p {
    font-size: 1.38rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
}

/* ===== PROCESS SECTION ===== */
.process {
    background-color: var(--black);
    padding: 12rem 40px;
}

.process h2 {
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.process .section-grid {
    gap: 10rem;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 650px;
}

.process-step {
    padding: 0.5rem 0;
    border-left: 3px solid rgba(255, 107, 53, 0.3);
    padding-left: 2.5rem;
    transition: border-color 0.3s ease;
}

.process-step:hover {
    border-left-color: var(--orange);
}

.step-num {
    display: block;
    font-size: 7rem;
    font-weight: 900;
    color: var(--orange);
    margin-bottom: 0.5rem;
    line-height: 0.9;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.process-step h4 {
    color: var(--white);
    margin-bottom: 1.2rem;
    font-size: 1.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.process-step p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.75;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background-color: var(--black);
    padding: 14rem 40px;
    text-align: center;
    border-top: 2px solid rgba(255, 107, 53, 0.3);
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
}

.contact h2 {
    font-size: 5.5rem;
    margin-bottom: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
}

.contact > p:first-of-type {
    font-size: 1.9rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 5rem;
    font-weight: 400;
    line-height: 1.6;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 4.5rem;
    flex-wrap: wrap;
}

.contact .button {
    margin-bottom: 0;
    font-size: 1.1rem;
    padding: 1.35rem 3.2rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact .button:hover {
    transform: translateY(-2px);
}

.contact-info {
    font-size: 1.4rem;
    color: var(--orange);
    letter-spacing: 0.08em;
    font-weight: 700;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--black);
    border-top: 2px solid rgba(255, 107, 53, 0.2);
    padding: 6rem 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content h3 {
    font-size: 2rem;
    color: var(--white);
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-content > p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.footer-info {
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    padding-top: 2rem;
}

.footer-info p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.8rem;
}

.footer-info a {
    color: var(--orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
    .header-container {
        padding: 0 30px;
    }

    .section {
        padding: 9rem 30px;
    }

    .approach {
        padding: 10rem 30px;
        margin-top: 1.5rem;
    }

    .slideshow-section {
        padding: 10rem 30px;
    }

    .process {
        padding: 10rem 30px;
    }

    .services {
        padding: 10rem 30px;
    }

    .contact {
        padding: 11rem 30px;
    }

    .hero-content h1 {
        font-size: 4.5rem;
    }

    .hero-content p {
        font-size: 1.35rem;
    }

    .hero-service-area {
        font-size: 1.15rem;
        margin-top: -1.5rem;
        margin-bottom: 2.5rem;
    }

    .section h2 {
        font-size: 3.2rem;
        margin-bottom: 3rem;
    }

    .section-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-exitpro .section-content h2 br {
        display: none;
    }

    :root {
        --header-height: 70px;
    }

    .header {
        padding: 0.45rem 0;
    }

    .logo {
        width: 142px;
        padding: 0;
    }

    .service-item {
        border-right: 2px solid rgba(255, 107, 53, 0.2) !important;
        border-bottom: 2px solid rgba(255, 107, 53, 0.2) !important;
    }

    .service-item:nth-child(2n) {
        border-right: none !important;
    }

    .service-item:nth-last-child(-n+2) {
        border-bottom: none !important;
    }

    .project-samples {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .sample-caption {
        font-size: 1.35rem;
        margin-top: 1.8rem;
    }

    .contact h2 {
        font-size: 3.8rem;
    }

    .contact > p:first-of-type {
        font-size: 1.5rem;
        margin-bottom: 3.5rem;
    }

    .section-content h2 {
        font-size: 3.2rem;
    }
    
    .service-item h3 {
        font-size: 1.9rem;
    }
    
    .process-step h4 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 300px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu a {
        display: block;
        padding: 1.3rem 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .header-container {
        padding: 0 20px;
    }

    .section {
        padding: 7rem 20px;
    }

    .approach {
        padding: 8rem 20px;
        margin-top: 1rem;
    }

    .slideshow-section {
        padding: 8rem 20px;
    }

    .process {
        padding: 8rem 20px;
    }

    .services {
        padding: 8rem 20px;
    }

    .contact {
        padding: 9rem 20px;
        border-top: 2px solid rgba(255, 107, 53, 0.25);
    }

    .hero-content h1 {
        font-size: 3rem;
        margin-bottom: 1.2rem;
    }

    .hero-content p {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
    }

    .hero-service-area {
        font-size: 1.1rem;
        margin-top: -1.3rem;
        margin-bottom: 2.3rem;
    }

    .button {
        padding: 1.1rem 2.5rem;
        font-size: 0.95rem;
        transform: none;
    }

    .button:hover,
    .button-outline:hover {
        transform: none;
    }

    .section h2 {
        font-size: 2.4rem;
        margin-bottom: 2.5rem;
    }

    .section h3 {
        font-size: 1.5rem;
    }

    .section h4 {
        font-size: 1.2rem;
    }

    .section p {
        font-size: 1.2rem;
        line-height: 1.85;
    }

    .section-content p {
        font-size: 1.24rem;
        line-height: 1.85;
    }

    .contact h2 {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
    }

    .contact > p:first-of-type {
        font-size: 1.4rem;
        margin-bottom: 3rem;
    }

    .contact .button {
        margin-bottom: 3rem;
        padding: 1.4rem 3.5rem;
        font-size: 1rem;
    }

    .contact-info {
        font-size: 1.25rem;
    }

    .nav {
        gap: 0;
    }

    .logo {
        width: 138px;
        padding: 0;
    }
    
    .sample-caption {
        font-size: 1.3rem;
        margin-top: 1.8rem;
        margin-bottom: 2rem;
    }

    .slider-label {
        font-size: 0.95rem;
        padding: 0.8rem 1.5rem;
        top: 20px;
    }

    .before-image .slider-label {
        left: 20px;
    }

    .after-image .slider-label {
        right: 20px;
    }

    .slider-instruction {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .step-num {
        font-size: 5rem;
    }

    .services-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-item {
        padding: 3rem 2rem;
        border-right: 2px solid rgba(255, 107, 53, 0.2) !important;
        border-bottom: 2px solid rgba(255, 107, 53, 0.2) !important;
    }

    .service-item:nth-child(2n) {
        border-right: none !important;
    }

    .service-item:last-child {
        border-bottom: none !important;
    }

    .service-item h3 {
        font-size: 1.7rem;
        margin-bottom: 1.2rem;
    }

    .service-item p {
        font-size: 1.24rem;
        line-height: 1.85;
    }

    .process-step h4 {
        font-size: 1.35rem;
    }
    
    .process-step {
        border-left: 3px solid rgba(255, 107, 53, 0.3);
        padding-left: 1.8rem;
    }

    .section-content h2 {
        font-size: 2.4rem;
    }

    .section-grid {
        gap: 2.5rem;
    }

    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.2rem 1rem;
    }

    .stats-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .slideshow-section h2 {
        margin-bottom: 1.5rem;
        font-size: 3.2rem;
    }

    .slideshow-intro {
        font-size: 1.2rem;
        margin-bottom: 4rem;
    }

    .why-exitpro .section-grid {
        gap: 5rem;
    }

    .why-exitpro .section-content h2 {
        font-size: 3.2rem;
    }

    .project-samples {
        gap: 2rem;
    }
}

@media (max-width: 700px) {
    .services-list {
        grid-template-columns: 1fr;
    }

    .service-item {
        border-right: none !important;
        border-bottom: 2px solid rgba(255, 107, 53, 0.2) !important;
    }

    .service-item:nth-child(2n) {
        border-right: none !important;
    }

    .service-item:last-child {
        border-bottom: none !important;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 15px;
    }

    .section {
        padding: 5rem 15px;
    }

    .approach {
        padding: 5.5rem 15px;
    }

    .slideshow-section {
        padding: 5.5rem 15px;
    }

    .process {
        padding: 5.5rem 15px;
    }

    .services {
        padding: 5.5rem 15px;
    }

    .contact {
        padding: 7rem 15px;
        border-top: 2px solid rgba(255, 107, 53, 0.25);
    }

    :root {
        --header-height: 56px;
    }

    .header {
        padding: 0.35rem 0;
    }

    .hero-content h1 {
        font-size: 2.4rem;
        margin-bottom: 1.2rem;
        line-height: 1.2;
        word-spacing: 0.05em;
    }

    .hero-content p {
        font-size: 1.15rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .hero-service-area {
        font-size: 1.05rem;
        margin-top: -1rem;
        margin-bottom: 1.8rem;
    }

    .button {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }

    .section h2 {
        font-size: 1.9rem;
        margin-bottom: 2rem;
    }

    .section h3 {
        font-size: 1.3rem;
    }

    .section h4 {
        font-size: 1.1rem;
    }

    .section p {
        font-size: 1.16rem;
        line-height: 1.78;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-item {
        font-size: 1rem;
    }

    .trust-icon {
        width: 46px;
        height: 46px;
    }

    .slideshow-section h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .slideshow-intro {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }

    .why-exitpro .section-content h2 {
        font-size: 2.2rem;
    }

    .why-exitpro .section-content h2 br {
        display: block;
    }

    .why-exitpro .section-content p {
        font-size: 1.1rem;
    }

    .contact h2 {
        font-size: 2.3rem;
        margin-bottom: 1.2rem;
    }

    .contact > p:first-of-type {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
    }

    .contact .button {
        margin-bottom: 2.5rem;
        padding: 1.2rem 2.8rem;
        font-size: 0.95rem;
    }

    .contact-info {
        font-size: 1.1rem;
    }

    .footer-content h3 {
        font-size: 1.6rem;
    }

    .footer-content > p {
        font-size: 1rem;
    }

    .footer-info p {
        font-size: 1rem;
    }

    .section-content h2 {
        font-size: 1.9rem;
    }

    .step-num {
        font-size: 2.8rem;
    }

    .service-item {
        padding: 2.5rem 1.5rem;
        border-bottom: 2px solid rgba(255, 107, 53, 0.2) !important;
    }

    .service-item h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .services-list {
        grid-template-columns: 1fr;
    }

    .service-item {
        border-right: none !important;
        border-bottom: 2px solid rgba(255, 107, 53, 0.2) !important;
    }

    .service-item:last-child {
        border-bottom: none !important;
    }

    .slider-label {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
        top: 15px;
    }

    .before-image .slider-label {
        left: 15px;
    }

    .after-image .slider-label {
        right: 15px;
    }

    .slider-instruction {
        font-size: 0.95rem;
    }

    .logo {
        width: 118px;
        padding: 0;
    }
    
    .sample-caption {
        font-size: 1.1rem;
        margin-top: 1.3rem;
    }
    
    .footer {
        font-size: 1rem;
        padding: 3.5rem 15px;
    }
}

/* ===== CONTACT FORM ===== */
.contact-form {
    max-width: 980px;
    margin: 0 auto 2.5rem;
    text-align: left;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem 1.4rem;
    margin-bottom: 1.2rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.form-field-full {
    grid-column: 1 / -1;
}

.form-field label {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--white);
    padding: 1rem 1rem;
    font: inherit;
    border-radius: 8px;
    outline: none;
}

.form-field select option {
    color: #111;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: rgba(13, 123, 77, 0.85);
}

.form-note {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.form-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}
