* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

*::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
}

:root {
    --primary: #ffffff;
    --secondary: #2563eb;
    --tertiary: #10b981;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #10b981 100%);
    --gradient-secondary: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--primary);
    overflow-x: hidden;
    overflow-y: scroll;
    width: 100%;
    max-width: 100vw;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

body::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

html {
    overflow-x: hidden;
    overflow-y: scroll;
    width: 100%;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

html::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    height: 70px;
}

.logo {
    height: 45px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 80%;
}

.nav-link:hover {
    color: var(--secondary);
}

.cta-button {
    background: linear-gradient(45deg, var(--secondary), var(--tertiary));
    color: var(--primary);
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.4);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
    display: flex;
    align-items: center;
    padding: 90px 2rem 2rem;
    width: 100%;
    box-sizing: border-box;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.mobile-logo {
    display: none;
}

.hero-content {
    animation: fadeInLeft 1s ease;
    width: 100%;
    box-sizing: border-box;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(45deg, var(--secondary), var(--tertiary));
    color: var(--primary);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary);
    padding: 1rem 2.5rem;
    border: 2px solid var(--secondary);
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-2px);
}

.hero-image {
    text-align: center;
    animation: fadeInRight 1s ease;
}

.hero-visual {
    width: 100%;
    max-width: 500px;
    height: 400px;
    background: linear-gradient(135deg, var(--secondary), var(--tertiary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-visual:hover {
    transform: translateY(-10px);
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    text-align: center;
    padding: 2rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-slide > * {
    position: relative;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide.prev {
    opacity: 0;
}

.carousel-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.carousel-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.carousel-subtitle {
    font-size: 1rem;
    opacity: 0.9;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: white;
    transform: scale(1.3);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.5);
}

/* Services Section */
.services {
    padding: 5rem 2rem;
    background: var(--primary);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.services-mobile-nav {
    display: none;
}

.service-card-flip {
    background: transparent;
    perspective: 1000px;
    height: 280px;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.service-card-flip:hover .service-card-inner {
    transform: rotateY(180deg);
}

.service-card-flip.flipped .service-card-inner {
    transform: rotateY(180deg);
}

.service-card-front,
.service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.service-card-front {
    background: var(--primary);
    overflow: hidden;
}

.service-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card-flip:hover .service-card-front img {
    transform: scale(1.1);
}

.service-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(37, 99, 235, 0.9), rgba(16, 185, 129, 0.7));
    padding: 1.2rem;
    transition: all 0.3s ease;
}

.service-card-overlay h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.service-card-back {
    background: var(--primary);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--secondary), var(--tertiary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    color: var(--primary);
    font-size: 1.3rem;
}

.service-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.service-description {
    color: var(--text-light);
    line-height: 1.5;
    text-align: center;
    font-size: 0.88rem;
}

/* Location Section */
.location {
    padding: 5rem 2rem;
    background: var(--primary);
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.location-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.location-card {
    background: var(--primary);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.location-card:hover {
    transform: translateY(-3px);
}

.location-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.location-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.location-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.embedded-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 300px;
}

.embedded-map:hover {
    transform: translateY(-5px);
}

.embedded-map iframe {
    width: 100%;
    height: 100%;
}

/* Contact Section */
.contact {
    padding: 4rem 2rem;
    background: var(--gradient-secondary);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
}

.contact-card {
    background: var(--primary);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(37, 99, 235, 0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.2);
}

.contact-icon-wrapper {
    width: 65px;
    height: 65px;
    margin: 0 auto 1rem;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
}

.contact-card:hover .contact-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: var(--gradient-primary);
}

.contact-icon-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    opacity: 0.3;
    animation: ripple 2s infinite;
}

.contact-icon {
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
}

.contact-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.contact-card:hover h3::after {
    width: 60px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    font-weight: 400;
}

.contact-card:hover .contact-details p {
    color: var(--text-dark);
}

.hours-line {
    padding: 0.25rem 0;
}

.hours-line.closed {
    color: #ef4444;
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--primary);
    padding: 3rem 2rem 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--tertiary);
}

.footer-section p, .footer-section a {
    color: #d1d5db;
    text-decoration: none;
    line-height: 1.6;
}

.footer-section a:hover {
    color: var(--tertiary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.3;
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* RESPONSIVE - Desktop */
@media (min-width: 1400px) {
    .nav-container,
    .hero-container,
    .services-container,
    .location-container,
    .contact-container,
    .footer-container {
        max-width: 1400px;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .hero-visual {
        max-width: 600px;
        height: 450px;
    }
}

/* RESPONSIVE - Tablet Landscape */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .hero-container {
        gap: 3rem;
    }
    
    .location-content {
        gap: 2.5rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-card {
        padding: 2.5rem 1.75rem;
    }
}

/* RESPONSIVE - Mobile */
@media (max-width: 768px) {
    * {
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }
    
    *::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }

    .nav-menu {
        display: none;
    }

    .navbar {
        display: none;
    }

    .nav-container {
        display: none;
    }

    body {
        padding: 0;
        margin: 0;
    }

    .hero {
        padding: 2rem 0 2rem 0;
        min-height: auto;
        width: 100vw;
        max-width: 100vw;
        box-sizing: border-box;
        margin: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .mobile-logo {
        display: block;
        width: 100%;
        text-align: center;
        margin: 0 0 1.5rem 0;
        padding: 0;
        order: -1;
    }

    .mobile-logo img {
        height: 55px;
        max-width: 180px;
        object-fit: contain;
    }

    .hero-content {
        order: 1;
        padding: 0;
        width: 100%;
        box-sizing: border-box;
        margin: 0;
    }

    .hero-image {
        order: 2;
        width: 100%;
        padding: 0;
        box-sizing: border-box;
        margin: 0;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin: 0 0 1rem 0;
        word-wrap: break-word;
        padding: 0;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 0 0 1.5rem 0;
        padding: 0;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 0.85rem;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 100%;
        padding: 1rem 1.5rem;
        margin: 0;
        box-sizing: border-box;
        font-size: 0.95rem;
    }

    .hero-visual {
        max-width: 100%;
        width: 100%;
        height: 360px;
        margin: 0;
        border-radius: 15px;
        box-sizing: border-box;
        overflow: hidden;
    }

    .carousel-container {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .carousel-slide {
        padding: 1.5rem 1rem;
        width: 100%;
        box-sizing: border-box;
    }

    /* SERVICES SECTION - FIXED FOR APK */
    .services {
        padding: 3rem 0;
        width: 100vw;
        max-width: 100vw;
        overflow-x: hidden;
        box-sizing: border-box;
        margin: 0;
        background: #f8f9fa;
    }

    .services-container {
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
        margin: 0 auto;
        box-sizing: border-box;
        overflow: hidden;
    }

    .section-title {
        font-size: 2rem;
        word-wrap: break-word;
        padding: 0;
        margin: 0 0 1rem 0;
        text-align: center;
    }

    .section-subtitle {
        font-size: 0.95rem;
        padding: 0;
        margin: 0 0 2rem 0;
        text-align: center;
        line-height: 1.6;
    }

    .services-mobile-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        margin-bottom: 1.5rem;
        padding: 0;
    }

    .services-nav-arrow {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, var(--secondary), var(--tertiary));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
        user-select: none;
    }

    .services-nav-arrow:active {
        transform: scale(0.9);
    }

    .services-nav-arrow:hover {
        box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
        transform: scale(1.05);
    }

    .services-dots-mobile {
        display: flex;
        gap: 10px;
        align-items: center;
    }

    .services-dot-mobile {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(37, 99, 235, 0.3);
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .services-dot-mobile.active {
        background: var(--secondary);
        transform: scale(1.3);
        box-shadow: 0 2px 6px rgba(37, 99, 235, 0.4);
    }

    .services-grid {
        width: 100%;
        padding: 0;
        margin: 0;
        position: relative;
        overflow: hidden;
        box-sizing: border-box;
        min-height: 360px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* CRITICAL FIX: Service cards visibility */
    .service-card-flip {
        position: absolute;
        width: 100%;
        height: 360px;
        left: 0;
        top: 0;
        margin: 0;
        opacity: 1;
        visibility: visible;
        transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
        border-radius: 15px;
        overflow: visible;
        box-sizing: border-box;
        perspective: 1000px;
        cursor: pointer;
        pointer-events: auto;
    }

    /* Hide all cards except first by default */
    .service-card-flip:not(:first-child) {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .service-card-flip.active-slide {
        opacity: 1 !important;
        visibility: visible !important;
        position: relative;
        pointer-events: auto;
        z-index: 2;
    }

    .service-card-flip.prev-slide,
    .service-card-flip.next-slide {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        position: absolute;
        z-index: 1;
    }

    .service-card-inner {
        position: relative;
        width: 100%;
        height: 100%;
        transition: transform 0.6s;
        transform-style: preserve-3d;
    }

    .service-card-flip.flipped .service-card-inner {
        transform: rotateY(180deg);
    }

    .service-card-front {
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }

    .service-card-front img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .service-card-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(37, 99, 235, 0.9), rgba(16, 185, 129, 0.7));
        padding: 2rem 1.5rem;
        display: flex;
        align-items: flex-end;
    }

    .service-card-overlay h3 {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--primary);
        margin: 0;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .service-card-back {
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 15px;
        padding: 2rem 1.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: linear-gradient(135deg, rgba(37, 99, 235, 0.95) 0%, rgba(16, 185, 129, 0.95) 100%);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        transform: rotateY(180deg);
    }

    .service-icon {
        width: 60px;
        height: 60px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
        color: var(--primary);
        font-size: 1.9rem;
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .service-title {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--primary);
        text-align: center;
    }

    .service-description {
        color: var(--primary);
        line-height: 1.7;
        text-align: center;
        font-size: 0.95rem;
        font-weight: 400;
        max-width: 90%;
    }

    .service-card-flip:hover .service-card-inner {
        transform: none;
    }

    /* LOCATION & CONTACT */
    .location,
    .contact {
        padding: 3rem 1rem;
        width: 100vw;
        max-width: 100vw;
        overflow-x: hidden;
        box-sizing: border-box;
        margin: 0;
    }

    .location-container,
    .contact-container {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
        padding: 0;
        box-sizing: border-box;
        margin: 0;
    }

    .location-info {
        width: 100%;
        gap: 1.25rem;
        padding: 0;
        margin: 0;
    }

    .location-card {
        width: 100%;
        max-width: 100%;
        padding: 1.5rem;
        box-sizing: border-box;
        margin: 0;
    }

    .location-map {
        order: 2;
        width: 100%;
        padding: 0;
        box-sizing: border-box;
        margin: 0;
        min-height: 280px;
    }

    .embedded-map {
        height: 280px;
        width: 100%;
        box-sizing: border-box;
        margin: 0;
        min-height: 280px;
        border-radius: 15px;
    }

    .contact-content {
        width: 100%;
        padding: 0;
        box-sizing: border-box;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .contact-card {
        padding: 2.5rem 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
    }

    .contact-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }

    .contact-icon {
        font-size: 2.25rem;
    }

    .contact-card h3 {
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }

    .contact-details p {
        font-size: 1rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .footer {
        padding: 2.5rem 1rem 1rem;
        width: 100vw;
        max-width: 100vw;
        box-sizing: border-box;
        margin: 0;
    }
}

/* APK DOWNLOAD BUTTON */
.btn-install {
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    text-decoration: none !important;
    display: none;
}

.btn-install:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.4);
    text-decoration: none !important;
}

@media (max-width: 480px) {
    .btn-install {
        display: inline-block;
        width: 100%;
        max-width: 100%;
        padding: 0.9rem 1.35rem;
        margin: 0;
        box-sizing: border-box;
        font-size: 0.9rem;
        text-align: center;
        text-decoration: none !important;
    }
}