:root {
    --dr-accent: #39b54a;
    --dr-dark: #0b0b0b;
    --dr-text: rgba(255, 255, 255, 0.75);
}

/* Accessibility helper classes (SEO + usability; no visual impact unless focused) */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static !important;
    width: auto !important;
    height: auto !important;
    margin: 1rem !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
}

 body {
     font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
     font-weight: 400;
     line-height: 1.6;
 }

 h1, h2, h3, h4, h5, h6,
 .h1, .h2, .h3, .h4, .h5, .h6,
 .display-1, .display-2,
 .subhead {
     font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
     font-weight: 700;
 }

 .subhead {
     font-weight: 600;
 }

 .header-nav,
 .header-nav__list,
 .header-nav__content,
 .home-content__subtitle,
 p {
     font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
     font-weight: 400;
 }
.header-logo .site-logo {
    display: inline-block;
    width: auto;
    color: #ffffff;
    text-decoration: none;
    padding: 0;
}
.header-logo .site-logo:hover,
.header-logo .site-logo:focus {
    color: #ffffff;
}

 .header-logo .site-logo img {
     display: block;
     width: 110px;
     height: auto;
 }

/* Desktop Horizontal Navigation */
.header-nav-desktop {
    display: none;
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 502;
}

@media only screen and (min-width: 601px) {
    .header-nav-desktop {
        display: block;
    }
}

.header-nav-desktop__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.header-nav-desktop__list li {
    margin: 0;
    padding: 0;
}

.header-nav-desktop__list a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02rem;
    position: relative;
    padding: 0.6rem 0;
    transition: color 0.3s ease;
    text-transform: none;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.header-nav-desktop__list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--dr-accent), #2d8f3a);
    transition: width 0.3s ease;
}

.header-nav-desktop__list a:hover {
    color: #ffffff;
}

.header-nav-desktop__list a:hover::after {
    width: 100%;
}

/* Hide hamburger menu on desktop */
@media only screen and (min-width: 601px) {
    .header-menu-toggle {
        display: none;
    }
}

/* Scroll effect for header */
.s-header.scrolled {
    background: rgba(11, 11, 11, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

.s-header {
    transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}
.home-content__subtitle {
    margin-top: 2rem;
    max-width: 62rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 1.7rem;
    line-height: 1.6;
}
@media only screen and (max-width: 600px) {
    .home-content__subtitle {
        font-size: 1.55rem;
    }
}
.s-home {
    background: url("../images/hero-bg.jpg") center center/cover no-repeat fixed;
}
@media only screen and (max-width: 800px) {
    .s-home {
        background-attachment: scroll;
    }
}
.service-icon i.fa {
    font-size: 3.2rem;
    color: var(--dr-accent);
}
.stats__count {
    display: flex;
    align-items: center;
    justify-content: center;
}
.stats__count i.fa {
    font-size: 3.6rem;
    color: #ffffff;
    opacity: 0.95;
}
.masonry {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3rem;
}
.masonry__brick {
    width: auto;
    margin: 0;
}
@media only screen and (max-width: 1200px) {
    .masonry {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media only screen and (max-width: 700px) {
    .masonry {
        grid-template-columns: 1fr;
    }
}
[data-aos] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 600ms ease, transform 600ms ease;
    will-change: opacity, transform;
}
[data-aos].is-inview {
    opacity: 1;
    transform: translateY(0);
}
.testimonials__slide {
    display: none;
}
.testimonials__slide.is-active {
    display: block;
}
.dr-testimonials-nav {
    margin-top: 2.4rem;
    display: flex;
    gap: 1.2rem;
    justify-content: center;
}
.dr-testimonials-nav button {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    height: 4.2rem;
    width: 4.2rem;
    border-radius: 999px;
    cursor: pointer;
    transition: all 200ms ease;
}
.dr-testimonials-nav button:hover,
.dr-testimonials-nav button:focus {
    border-color: #ffffff;
    transform: translateY(-1px);
}
.go-top {
    display: none;
}
.go-top.is-visible {
    display: block;
}
.dr-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.dr-lightbox.is-open {
    display: flex;
}

.dr-lightbox__inner {
    position: relative;
    max-width: 1100px;
    width: 100%;
}

.dr-lightbox__img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

.dr-lightbox__close {
    position: absolute;
    top: -1.2rem;
    right: -1.2rem;
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.35);
    color: #ffffff;
    cursor: pointer;
}

.dr-lightbox__close:hover,
.dr-lightbox__close:focus {
    border-color: #ffffff;
}

 .footer-logo {
     background: none !important;
     width: auto;
     height: auto;
 }

 .footer-logo img {
     display: block;
     width: 120px;
     height: auto;
 }

/* Modern Contact Section Styles */
.s-contact {
    background: linear-gradient(135deg, #0b0b0b 0%, #1a1a1a 50%, #0f0f0f 100%) !important;
    position: relative;
    overflow: hidden;
}

.s-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(57, 181, 74, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(57, 181, 74, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    position: relative;
    z-index: 1;
}

.contact-primary, .contact-secondary {
    padding: 0 5rem;
}

/* Modern Form Styling */
.contact-primary {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.contact-primary h3.h6 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.s-contact .form-field {
    margin-bottom: 2rem;
}

.s-contact .form-field input,
.s-contact .form-field textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.s-contact .form-field input::placeholder,
.s-contact .form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.s-contact .form-field input:focus,
.s-contact .form-field textarea:focus {
    outline: none;
    border-color: var(--dr-accent);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(57, 181, 74, 0.1),
                0 0 20px rgba(57, 181, 74, 0.2);
    transform: translateY(-1px);
}

.s-contact .form-field textarea {
    min-height: 120px;
    resize: vertical;
}

/* Modern Submit Button */
.s-contact .form-field button.full-width.btn--primary {
    background: linear-gradient(135deg, var(--dr-accent) 0%, #2d8f3a 100%);
    border: none;
    border-radius: 12px;
    padding: 1.4rem 2rem;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(57, 181, 74, 0.3);
    position: relative;
    overflow: hidden;
}

.s-contact .form-field button.full-width.btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.s-contact .form-field button.full-width.btn--primary:hover::before {
    left: 100%;
}

.s-contact .form-field button.full-width.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(57, 181, 74, 0.4);
    background: linear-gradient(135deg, #4fc960 0%, var(--dr-accent) 100%);
}

/* Modern Contact Info Cards */
.contact-secondary {
    padding-left: 3rem !important;
}

.contact-secondary .contact-info {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    height: 100%;
}

.contact-secondary .cinfo {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-secondary .cinfo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--dr-accent), #2d8f3a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-secondary .cinfo:hover::before {
    transform: scaleX(1);
}

.contact-secondary .cinfo:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.contact-secondary .cinfo h5 {
    color: var(--dr-accent);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-secondary .cinfo h5::before {
    font-family: 'FontAwesome';
    font-size: 1.2rem;
}

.contact-secondary .cinfo:nth-child(2) h5::before {
    content: '\f232'; /* WhatsApp icon */
}

.contact-secondary .cinfo:nth-child(3) h5::before {
    content: '\f003'; /* Email icon */
}

.contact-secondary .cinfo:nth-child(4) h5::before {
    content: '\f095'; /* Phone icon */
}

.contact-secondary .cinfo p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Enhanced WhatsApp Button */
.contact-secondary .cinfo a.btn.btn--stroke {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border: none;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-secondary .cinfo a.btn.btn--stroke::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.contact-secondary .cinfo a.btn.btn--stroke:hover::before {
    left: 100%;
}

.contact-secondary .cinfo a.btn.btn--stroke:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #34e89e 0%, #25d366 100%);
}

/* Modern Success Message */
.message-success {
    background: linear-gradient(135deg, rgba(57, 181, 74, 0.1) 0%, rgba(45, 143, 58, 0.1) 100%);
    border: 2px solid var(--dr-accent);
    border-radius: 12px;
    padding: 1.5rem;
    color: #ffffff;
    font-weight: 500;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(57, 181, 74, 0.2);
    position: relative;
    overflow: hidden;
}

.message-success::before {
    content: '\f00c';
    font-family: 'FontAwesome';
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--dr-accent);
    font-size: 1.5rem;
}

.message-warning {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(185, 28, 28, 0.1) 100%);
    border: 2px solid #dc3545;
    border-radius: 12px;
    padding: 1.5rem;
    color: #ffffff;
    font-weight: 500;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.2);
}

/* Social Media Icons */
.contact-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-social li a {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-social li a:hover {
    background: var(--dr-accent);
    border-color: var(--dr-accent);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(57, 181, 74, 0.3);
}

.contact-social li a i {
    font-size: 1.2rem;
}

/* Mobile Responsive */
@media only screen and (max-width: 1200px) {
    .contact-primary, .contact-secondary {
        padding: 0 2rem;
    }
    
    .contact-secondary {
        padding-left: 1rem !important;
    }
}

@media only screen and (max-width: 800px) {
    .contact-primary, .contact-secondary {
        float: none;
        width: 100%;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    .contact-secondary {
        padding-left: 1rem !important;
    }
    
    .contact-primary {
        padding: 2rem !important;
    }
    
    .contact-secondary .contact-info {
        padding: 2rem;
    }
}

@media only screen and (max-width: 600px) {
    .contact-primary, .contact-secondary {
        padding: 0 15px;
    }
    
    .contact-primary {
        padding: 1.5rem !important;
    }
    
    .contact-secondary .contact-info {
        padding: 1.5rem;
    }
    
    .contact-secondary .cinfo {
        padding: 1.5rem;
    }
    
    .s-contact .form-field input,
    .s-contact .form-field textarea {
        padding: 1rem;
    }
    
    .s-contact .form-field button.full-width.btn--primary {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }
}

/* Google Maps Styling */
.contact-map {
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.map-title {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.map-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.map-iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
    transition: transform 0.3s ease;
}

.map-container:hover .map-iframe {
    transform: scale(1.02);
}

/* Mobile Responsive for Map */
@media only screen and (max-width: 800px) {
    .contact-map {
        margin-top: 3rem;
    }
    
    .map-iframe {
        height: 350px;
    }
    
    .map-title {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
}

@media only screen and (max-width: 600px) {
    .contact-map {
        margin-top: 2rem;
        padding: 0 15px;
    }
    
    .map-iframe {
        height: 250px;
    }
    
    .map-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .map-container {
        border-radius: 8px;
    }
}

/* Modern Portfolio Grid System */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card {
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 12px;
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
    display: block;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.1) 0%, 
        rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.portfolio-content {
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.portfolio-title {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.portfolio-category {
    color: var(--dr-accent);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(57, 181, 74, 0.15);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    display: inline-block;
}

/* Hover Effects */
.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.08);
    filter: brightness(0.8);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-content {
    transform: translateY(0);
}

/* Responsive Breakpoints */
@media only screen and (max-width: 1200px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .portfolio-title {
        font-size: 1.1rem;
    }
    
    .portfolio-category {
        font-size: 0.8rem;
        padding: 0.25rem 0.6rem;
    }
}

@media only screen and (max-width: 900px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .portfolio-overlay {
        padding: 1.5rem;
    }
    
    .portfolio-title {
        font-size: 1rem;
    }
}

@media only screen and (max-width: 600px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 0 1rem;
    }
    
    .portfolio-card {
        aspect-ratio: 16/9;
    }
    
    .portfolio-overlay {
        padding: 1.2rem;
    }
    
    .portfolio-title {
        font-size: 0.95rem;
    }
    
    .portfolio-category {
        font-size: 0.75rem;
        padding: 0.2rem 0.5rem;
    }
    
    .portfolio-item:hover {
        transform: translateY(-3px);
    }
}

@media only screen and (max-width: 400px) {
    .portfolio-grid {
        padding: 0 0.5rem;
        gap: 1rem;
    }
    
    .portfolio-overlay {
        padding: 1rem;
    }
    
    .portfolio-title {
        font-size: 0.9rem;
    }
}

/* Modern Service Approach Section */
.service-approach {
    position: relative;
    padding: 10rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.3) 0%, 
        rgba(0, 0, 0, 0.1) 50%, 
        rgba(0, 0, 0, 0.2) 100%);
}

.service-approach__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, 
        rgba(57, 181, 74, 0.03) 0%, 
        transparent 50%),
        radial-gradient(circle at 80% 80%, 
        rgba(57, 181, 74, 0.02) 0%, 
        transparent 50%),
        radial-gradient(circle at 40% 20%, 
        rgba(57, 181, 74, 0.01) 0%, 
        transparent 50%);
    pointer-events: none;
}

.service-approach__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 98%, rgba(255, 255, 255, 0.02) 50%),
        linear-gradient(135deg, transparent 98%, rgba(255, 255, 255, 0.02) 50%);
    background-size: 50px 50px;
    pointer-events: none;
}

.service-approach__header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.service-approach__subtitle {
    color: var(--dr-accent);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    background: linear-gradient(90deg, #39b54a, #2d8f3a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-approach__title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-approach__description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

.service-approach__divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--dr-accent), transparent);
    margin: 0 auto 6rem;
    border-radius: 2px;
    position: relative;
    z-index: 2;
}

.service-approach__features {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.service-approach__feature {
    flex: 1;
    min-width: 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(57, 181, 74, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.feature-card__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--dr-accent), #2d8f3a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover .feature-card__icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(57, 181, 74, 0.3);
}

.feature-card__icon i {
    color: #ffffff;
    font-size: 1.8rem;
}

.feature-card__title {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-card__description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Service Approach */
@media only screen and (max-width: 1200px) {
    .service-approach__features {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .service-approach__feature {
        flex: 0 0 calc(50% - 0.75rem);
    }
    
    .service-approach__title {
        font-size: 2.2rem;
    }
    
    .service-approach__description {
        font-size: 1rem;
    }
}

@media only screen and (max-width: 800px) {
    .service-approach {
        padding: 8rem 0 6rem;
    }
    
    .service-approach__header {
        margin-bottom: 3rem;
    }
    
    .service-approach__title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .service-approach__description {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    .service-approach__divider {
        margin-bottom: 4rem;
    }
    
    .service-approach__features {
        gap: 1.2rem;
    }
    
    .service-approach__feature {
        flex: 0 0 calc(50% - 0.6rem);
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-card__icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.2rem;
    }
    
    .feature-card__icon i {
        font-size: 1.5rem;
    }
    
    .feature-card__title {
        font-size: 1.1rem;
    }
    
    .feature-card__description {
        font-size: 0.9rem;
    }
}

@media only screen and (max-width: 600px) {
    .service-approach {
        padding: 6rem 0 4rem;
    }
    
    .service-approach__subtitle {
        font-size: 1rem;
        letter-spacing: 1.5px;
    }
    
    .service-approach__title {
        font-size: 1.8rem;
        padding: 0 1rem;
    }
    
    .service-approach__description {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
    
    .service-approach__divider {
        margin-bottom: 3rem;
    }
    
    .service-approach__features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .service-approach__feature {
        flex: 1;
    }
    
    .feature-card {
        padding: 1.8rem 1.2rem;
    }
    
    .feature-card:hover {
        transform: translateY(-5px);
    }
    
    .feature-card__icon {
        width: 55px;
        height: 55px;
        margin-bottom: 1rem;
    }
    
    .feature-card__icon i {
        font-size: 1.4rem;
    }
    
    .feature-card__title {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .feature-card__description {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

@media only screen and (max-width: 400px) {
    .service-approach {
        padding: 5rem 0 3rem;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
    }
    
    .feature-card__icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-card__icon i {
        font-size: 1.2rem;
    }
    
    .feature-card__title {
        font-size: 0.95rem;
    }
    
    .feature-card__description {
        font-size: 0.8rem;
    }
}

/* Portfolio Lightbox Modal */
.portfolio-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.portfolio-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.lightbox-container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transform: scale(0.8) translateY(20px);
    transition: transform 0.3s ease;
}

.portfolio-lightbox.is-open .lightbox-container {
    transform: scale(1) translateY(0);
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: 1.5rem;
}

.lightbox-next {
    right: 1.5rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-image-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.lightbox-caption {
    margin-top: 1.5rem;
    text-align: center;
}

.lightbox-title {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.lightbox-category {
    color: var(--dr-accent);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(57, 181, 74, 0.15);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    display: inline-block;
}

/* Mobile Lightbox Responsive */
@media only screen and (max-width: 768px) {
    .lightbox-container {
        max-width: 95vw;
        max-height: 85vh;
        margin: 1rem;
    }
    
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .lightbox-prev {
        left: 1rem;
    }
    
    .lightbox-next {
        right: 1rem;
    }
    
    .lightbox-image-container {
        padding: 1.5rem;
    }
    
    .lightbox-image {
        max-height: 60vh;
    }
    
    .lightbox-title {
        font-size: 1.2rem;
    }
    
    .lightbox-category {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }
}

@media only screen and (max-width: 480px) {
    .lightbox-container {
        max-width: 98vw;
        margin: 0.5rem;
    }
    
    .lightbox-close {
        top: 0.8rem;
        right: 0.8rem;
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .lightbox-prev {
        left: 0.8rem;
    }
    
    .lightbox-next {
        right: 0.8rem;
    }
    
    .lightbox-image-container {
        padding: 1rem;
    }
    
    .lightbox-image {
        max-height: 50vh;
    }
    
    .lightbox-title {
        font-size: 1rem;
    }
    
    .lightbox-category {
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
    }
}
