/* ==================================
   RESET & GLOBAL STYLES
==================================
*/
:root {
    --font-main: 'Inter', sans-serif;
    --color-yellow: #EECA02;
    --color-black: #111827;
    --color-yellow-dark: #facc15;
    --color-dark: #111827;
    --color-gray: #111827;
    --color-gray-light: #d1d5db;
    --color-gray-medium: #6b7280;
    --color-gray-dark: #374151;
    --color-white: #ffffff;
    --color-green: #22c55e;
    --color-green-dark: #16a34a;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-white);
    color: var(--color-dark);
    margin:0;
    padding: 0;
}

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

ul, li {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Utility Classes */
.hidden {
    display: none;
}
.text-white {
    color: var(--color-white);
}
.text-black {
    color: var(--color-black);
}
.text-gray-light {
    color: var(--color-gray-light);
}
.bg-white {
    background-color: var(--color-white);
}
.bg-yellow {
    background-color: var(--color-yellow);
}
.bg-dark {
    background-color: var(--color-dark);
}
.container {
    max-width: 80rem; /* 1280px */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}
.container-narrow {
    max-width: 72rem; /* 1152px */
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 1px;
    padding-right: 1px;
    align-items: center;
    object-position: center;
}

.section {
    padding-top: 5rem; /* py-20 */
    padding-bottom: 5rem; /* py-20 */
}
.section-padded-top {
    padding-top: 3rem; /* pt-12 */
}
.section-heading {
    font-size: 2.25rem; /* text-4xl */
    font-weight: 800; /* font-extrabold */
    text-align: center;
    margin-bottom: 3rem; /* mb-12 */
}

/* ==================================
   WHATSAPP FAB
==================================
*/
.whatsapp-fab {
    position: fixed;
    bottom: 1.5rem;
    right: 0; 
    background-color: transparent;
    color: var(--color-white);
    border-radius: 9999px;
    z-index: 50;
    transition: background-color 0.2s ease;
    animation: pulse 2s ease-in-out infinite; 
}

.whatsapp-fab:hover {
    background-color: transparent;
    animation: none;
    transform: scale(1.2); 
}

/* ==================================
   HEADER
==================================
*/
.site-header {
    background-color: var(--color-black);
    color: var(--color-white);
    padding-top: 1rem;
    padding-bottom: 1rem;
    position: sticky;
    top: 0;
    z-index: 40;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

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

.logo {
    font-weight: 800; 
    font-size: 1.875rem; 
    color: var(--color-yellow);
    display: inline-flex; 
    align-items: center;
    gap: 0.5rem;
}

.logo-highlight {
    background-color: var(--color-yellow);
    color: var(--color-black);
    border-radius: 0.375rem; 
    padding: 0.125rem 0.375rem; 
}

.logo-image {
    display: block;
    width: auto;
    object-fit: contain;
}

.site-header .logo-image {
    height: 2.25rem; 
}

.site-footer .logo-image {
    height: 3rem; 
}

/* Desktop Navigation */
.nav-desktop {
    display: none; 
}

.nav-link {
    transition: color 0.2s ease;
}
.nav-link:hover {
    color: var(--color-yellow);
}

.nav-cta {
    background-color: var(--color-yellow);
    color: var(--color-black);
    font-weight: 600; 
    padding: 0.5rem 1.25rem; 
    border-radius: 0.5rem; 
    transition: background-color 0.2s ease;
}
.nav-cta:hover {
    background-color: var(--color-yellow-dark);
}

/* Mobile Menu */
.mobile-menu-toggle {
    padding: 0.5rem; 
    border-radius: 0.375rem; 
    background: none;
    border: none;
    color: var(--color-gray-light);
    cursor: pointer;
}
.mobile-menu-toggle:hover {
    color: var(--color-white);
    background-color: var(--color-gray-dark);
}
.icon {
    width: 1.5rem; 
    height: 1.5rem; 
    stroke: currentColor;
}

.mobile-menu-dropdown {
    background-color: var(--color-black);
    padding: 0.5rem 0.5rem 0.75rem; 
}
.mobile-menu-dropdown > * + * {
    margin-top: 0.25rem; 
}

.mobile-menu-link {
    display: block;
    padding: 0.5rem 0.75rem; 
    border-radius: 0.375rem; 
    font-size: 1rem; 
    font-weight: 500; 
    color: var(--color-gray-light);
}
.mobile-menu-link:hover {
    color: var(--color-white);
    background-color: var(--color-gray-dark);
}

.mobile-menu-cta {
    display: block;
    width: 100%;
    text-align: left;
    background-color: var(--color-yellow);
    color: var(--color-black);
    font-weight: 600;
    padding: 0.5rem 0.75rem; 
    border-radius: 0.5rem; 
}
.mobile-menu-cta:hover {
    background-color: var(--color-yellow-dark);
}


/* ==================================
   HERO SECTION (SLIDER)
==================================
*/
.hero-section {
    position: relative;
    min-height: 80vh;
    overflow: hidden; 
}

.hero-slider-container {
    display: flex;
    transition: transform 1s ease-in-out; 
    margin-bottom: 100px;
}

.hero-slide {
    flex-shrink: 0;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

/* --- Slide 1 --- */
.slide-1 {
    background-color: var(--color-yellow);
    color: var(--color-black);
    display: flex;
    align-items: center;
}

.hero-grid-container {
    display: grid;
    gap: 3rem;
    align-items: center;
    padding-top: 5rem;
    padding-bottom: 7rem;
}
.hero-content {
    text-align: center;
}
.text-content-1 {
    order: 2;
}
.hero-headline {
    font-size: 2.25rem; 
    font-weight: 800; 
    line-height: 1.2;
    margin-bottom: 2rem;
}
.hero-headline-highlight {
    background-color: var(--color-black);
    color: var(--color-yellow);
    padding: 0 0.5rem;
    border-radius: 0.375rem;
    display: inline-block;
    margin-top: 0.5rem;
}

.hero-headline-underline1{ 
    color: var(--color-black);
    padding: 0 0.5rem;
    border-radius: 0px;
    text-underline-offset: var(--color-black);
    margin-top: 0.5rem;
    border-bottom: 4px solid var(--color-black);
}

.hero-subheadline, .hero-subheadline-2 {
    margin-top: 1.5rem;
    font-size: 1rem; 
    color: var(--color-gray);
    max-width: 32rem; 
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
}
.hero-cta {
    margin-top: 2rem;
    display: inline-block;
    background-color: var(--color-black);
    color: var(--color-yellow);
    font-weight: 600;
    padding: 0.75rem 2rem; 
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    font-size: 1.125rem;
    transition: background-color 0.2s ease, transform 0.2s ease;
}
.hero-cta:hover {
    background-color: var(--color-gray);
    transform: scale(1.05);
}
.hero-image-area {
    display: flex;
    justify-content: center;
    align-items: center;
}
.image-area-1 {
    order: 1;
}
.hero-image-circle {
    background-color: var(--color-black);
    border-radius: 9999px;
    width: 18rem; 
    height: 18rem; 
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.hero-slide-image1 {
    width: auto;
    height: 300px;
    border-radius: 0.75rem; 
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* --- Slide 2 --- */
.slide-2 {
    background-color: #111827; 
    color: var(--color-white);
    flex-direction: column;
    display: flex;
    align-items: center;
    min-height: 100vh;
}
.hero-grid-container-2 {
    display: grid;
    gap: 1rem;
    align-items: center;
    width: 100%;
    justify-content: center;
}
.text-content-2 {
   text-align: center;
}
.text-content-2 .hero-subheadline,
.text-content-2 .hero-subheadline-2 {
    color: var(--color-white) !important;
    text-align: justify;       
    text-justify: inter-word;   
    font-size: 1rem;
}
.hero-headline-highlight.type-2 {
    background-color: var(--color-yellow);
    color: var(--color-black);
    padding: 0 0.5rem;
    border-radius: 0.375rem;
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 1.5rem;
}
.hero-headline-underline {
    color: var(--color-yellow);
    padding: 0 0.5rem;
    border-radius: 0px;
    display: inline-block;
    margin-top: 0.5rem;
    border-bottom: 4px solid var(--color-yellow);
}
.hero-cta.type-2 {
    background-color: var(--color-yellow);
    color: var(--color-black);
}
.hero-cta.type-2:hover {
    background-color: var(--color-yellow-dark);
}
.hero-slide-image-container {
    margin-top: 3rem;
    width: 100%;
}
.hero-slide-image2 {
    width: auto;
    height: 200px;
    border-radius: 0.75rem; 
}
.slide-2 .hero-headline {
    color: var(--color-white) !important;
    line-height: 1.05;
}
.slide-2 .hero-line {
    display: block;
    margin-bottom: 0.9rem;
}

/* --- Slide 3 --- */
.slide-3 {
    background-color: var(--color-yellow);
    color: var(--color-white);
    flex-direction: column;
    text-align: center;
    padding: 1rem;
    margin-bottom: 3rem;
    gap: 2rem;
}
.text-content-3 {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 2rem 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    order: 1;
    text-align: justify; 
    align-items: center; 
    font-size: 0.5rem;
}
.text-content-3 .hero-subheadline,
.text-content-3 .hero-subheadline-2 {
    color: var(--color-white) !important;
    font-size: 1rem;
}
.hero-headline-3 {
    font-size: 1.5rem; 
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
}
.hero-badge {
    background-color: var(--color-white);
    color: var(--color-dark);
    border-radius: 6px;
    font-size: 1.5rem; 
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}
.hero-cta.type-3 {
    background-color: var(--color-white);
    color: var(--color-dark);
    align-self: center; 
    font-size: 0.75rem;
    padding: 0.25rem 2rem;
    margin-top: 1rem;
}
.hero-cta.type-3:hover {
    background-color: #f3f4f6; 
}
.image-area-3 {
    order: 1;
    display: flex;
    justify-content: start;
    align-items: start;
    height: 300px;
}
.hero-slide-image3 {
    width: 100%;
    height: 90%;
    object-fit: cover;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    margin-top: 1.2rem;
}


/* ==================================
   QUICK NAV BAR
==================================
*/
.quick-nav-bar {
    position: relative;
    z-index: 20;
    margin-top: -2rem; 
}
.quick-nav-container {
    background-color: var(--color-yellow);
    border-radius: 0.75rem; 
    margin-left: 1rem;
    margin-right: 1rem ;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}
.quick-nav-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.quick-nav-links > * + * {
    border-left: 1px dashed rgba(0, 0, 0, 0.5);
}
.quick-nav-link {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-black);
    padding: 1.5rem 0.75rem;
    text-align: center;
    transition: color 0.2s ease;
}
.quick-nav-link:hover {
    color: var(--color-gray-dark);
}
.icon-lg {
    width: 2rem; 
    height: 2rem; 
    color: var(--color-black);
}
.quick-nav-text {
    font-weight: 600; 
    font-size: 0.875rem; 
}

/* ==================================
   PORTFOLIO SECTION (UPDATED)
==================================
*/
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

/* FIX RADIUS HILANG:
   1. overflow: hidden pada parent
   2. transform: translateZ(0) untuk fix glitch browser
   3. Pindahkan scale hover ke image, bukan ke parent */
.portfolio-item,
.portfolio-item-tall {
    border-radius: 0.75rem; 
    overflow: hidden; /* Penting! */
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    position: relative;
    transform: translateZ(0); /* Safari fix */
}

/* Style gambar */
.portfolio-item img,
.portfolio-item-tall img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease; /* Transisi ada di gambar */
}

/* Efek Hover: Gambar yang membesar, bukan kotaknya */
.portfolio-item:hover img,
.portfolio-item-tall:hover img {
    transform: scale(1.1);
}

.baris1, .baris2, .baris3 {
    display: flex;     
    flex-direction: column; 
    gap: 2rem;         
}

/* Slider di dalam Portfolio */
.baris3 {
    position: relative;
    overflow: hidden; 
    width: 100%;
}
.slider-container {
    width: 100%;
    overflow: hidden;
}
.slider-track {
    display: flex; 
    transition: transform 0.5s ease-in-out; 
    width: 100%;
}
.slide {
    min-width: 100%; 
    box-sizing: border-box;
}

/* ==================================
   PRODUCT SECTION
==================================
*/
.product-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
    align-items: center;
}
.product-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.product-image {
    width: 100%;
    max-width: 34rem; 
    border-radius: 0.5rem;
}
.product-features-list {
    max-width: 32rem; 
    display: flex;
    flex-direction: column;
    gap: 1.5rem; 
}
.product-feature-item {
    display: flex;
    align-items: center;
    gap: 1.25rem; 
    background-color: var(--color-dark);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}
.product-feature-icon-wrapper {
    flex-shrink: 0;
    background-color: var(--color-white);
    padding: 0.75rem;
    border-radius: 0.5rem;
}
.product-feature-icon {
    width: 5rem; 
    height: 5rem; 
    border-radius: 0.375rem;
    object-fit: cover;
}
.product-feature-title {
    font-size: 1.5rem; 
    font-weight: 700;
    color: var(--color-white);
}
.product-feature-description {
    margin-top: 0.25rem;
    color: var(--color-gray-light);
}

/* ==================================
   WHY US SECTION
==================================
*/
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}
.why-us-card, .why-us-card2 {
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}
.why-us-card {
    background-color: var(--color-dark);
    color: var(--color-white);
}
.why-us-card2 {
    background-color: var(--color-white);
    color: var(--color-dark);
}
.why-us-icon {
    width: 3rem; 
    height: 3rem; 
    color: var(--color-yellow);
    margin-bottom: 1rem;
}
.why-us-title {
    font-size: 1.5rem; 
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.why-us-description {
    color: var(--color-gray-light);
}
.why-us-description2 {
    color: var(--color-black);
}
.why-us-card-image {
    position: relative;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    overflow: hidden;
    min-height: 250px;
}
.why-us-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==================================
   SERVICE AREA
==================================
*/
.service-area-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}
.service-area-card {
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    overflow: hidden;
}
.service-area-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}
.service-area-title {
    font-size: 1.875rem; 
    font-weight: 700;
}
.service-area-link {
    flex-shrink: 0;
    width: 2.5rem; 
    height: 2.5rem; 
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}
.service-area-link.bg-white:hover {
    background-color: #f3f4f6; 
}
.service-area-link.bg-dark:hover {
    background-color: var(--color-gray);
}
.icon-sm {
    width: 1.5rem; 
    height: 1.5rem; 
    stroke-width: 2.5;
}
.service-area-image-container {
    border-radius: 0.5rem;
    overflow: hidden;
    border-radius: 16px;
}
.service-area-image {
    width: 100%;
    height: 20rem; 
    object-fit: cover;
}

/* ==================================
   TESTIMONIALS (MARQUEE)
==================================
*/
.testimonial-section {
    overflow: hidden;
}
.testimonial-container {
    width: 100%;
}
.testimonial-track {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

.testimonial-card {
    flex-shrink: 0;
    width: 24rem; 
    margin-left: 1rem;
    margin-right: 1rem;
    padding: 2rem;
    background-color: var(--color-dark);
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}
.testimonial-content {
    display: flex;
    align-items: flex-start;
}
.testimonial-avatar {
    width: 5rem; 
    height: 5rem; 
    border-radius: 9999px;
    flex-shrink: 0;
    border: 4px solid var(--color-white);
}
.testimonial-text {
    margin-left: 1.5rem;
}
.testimonial-quote {
    font-size: 1.125rem; 
    font-style: italic;
    color: var(--color-gray-light);
}
.testimonial-author {
    margin-top: 1rem;
    font-weight: 700;
    color: var(--color-white);
}

/* ==================================
   FOOTER
==================================
*/
.site-footer {
    background-color: var(--color-black);
    color: var(--color-gray-light);
    padding-top: 5rem; 
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem; 
}
.footer-column .logo {
    font-size: 1.875rem; 
}
.footer-address {
    margin-top: 1rem;
    font-size: 0.875rem; 
    color: var(--color-gray-medium);
}
.footer-heading {
    font-size: 1.125rem; 
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1rem;
}
.footer-contact-list, .footer-hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem; 
}
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.footer-contact-icon {
    width: 1.25rem; 
    height: 1.25rem; 
    color: var(--color-yellow);
}
.footer-link, .footer-social-link {
    transition: color 0.2s ease;
}
.footer-link:hover, .footer-social-link:hover {
    color: var(--color-yellow);
}
.footer-social-links {
    display: flex;
    gap: 1rem; 
}
.footer-social-link {
    color: var(--color-gray-medium);
}
.footer-middle-bar {
    border-top: 1px solid var(--color-gray);
    margin-top: 1rem; 
    padding-top: 1rem; 
}
.footer-middle-container {
    display: flex;
    gap: 1.5rem; 
    justify-content: center;
}
.footer-bottom-bar {
    border-top: 1px solid var(--color-gray);
    padding-top: 2rem; 
    padding-bottom: 2rem; 
    justify-content: center;
    text-align: center;
    margin-top: 0px;
}
.footer-bottom-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--color-gray-medium);
}
.footer-bottom-container a {
    margin-top: 0.5rem;
    align-items: center;
}

/* ==================================
   DESKTOP RESPONSIVE
==================================
*/
@media (min-width: 768px) {
    .container-narrow {
        margin-left: auto;
        margin-right: auto;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Footer Desktop */
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .footer-bottom-container {
        flex-direction: row;
        justify-content: center ;
    }
    .footer-bottom-container a {
        margin-top: 0;
        text-align: center;
    }

    /* Navigation */
    .site-header .logo-image {
        height: 2.5rem; 
    }
    .site-footer .logo-image {
        height: 3.5rem; 
    }
    .nav-desktop {
        display: flex;
        align-items: center;
    }
    .nav-desktop > * + * {
        margin-left: 2rem;
    }
    .mobile-menu-toggle {
        display: none;
    }
    .mobile-menu-dropdown {
        display: none;
    }

    /* Hero Desktop */
    .hero-section {
        height: 100vh; 
    }
    .hero-slide {
        height: fit-content;
        margin-top: 0px;
    }
    .hero-grid-container {
        grid-template-columns: repeat(2, 1fr);
        padding-top: 7rem;
        padding-bottom: 7rem;
    }
    .hero-content {
        text-align: left;
    }
    .hero-headline {
        font-size: 3rem; 
    }
    .hero-subheadline, .hero-subheadline-2 {
        font-size: 1.2rem;
        margin-left: 0;
        margin-right: 0;
    }
    .text-content-1 {
        order: 1;
    }
    .image-area-1 {
        order: 2;
    }
    .hero-image-circle {
        width: 24rem; 
        height: 24rem; 
    }
    .hero-slide-image1 {
        height: 440px;
    }
    .hero-cta {
        font-size: 1.2rem;
    }
    
    /* Slide 2 Desktop */
    .hero-grid-container-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .text-content-2 {
        text-align: right;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }
    .text-content-2 .hero-subheadline,
    .text-content-2 .hero-subheadline-2 {
        font-size: 1.2rem;
    }
    .hero-headline-highlight.type-2 {
        font-size: 3rem;
        margin-top: 0;
    }
    .hero-headline-underline {
        font-size: 3rem;
    }
    .hero-slide-image2 {
        max-width: 100%;
        height: 100%;
    }

    /* Slide 3 Desktop */
    .slide-3 {
        flex-direction: row;
        gap: 3rem;
        align-items: center;
        height: fit-content;
        display: flex;
        min-height: 100vh;
    }
    .countainer.hero-grid-countainer {
        padding-top: 0px;
        align-items: center; 
        justify-content: center;
    }
    .text-content-3 {
        order: 1;
        font-size: 1.2rem;
    }
    .text-content-3 .hero-subheadline,
    .text-content-3 .hero-subheadline-2 {
        font-size: 1.2rem;
    }
    .image-area-3 {
        order: 2;
        height: 450px;
        margin-top: 0px;
    }
    .hero-slide-image3 {
        height: 450px;
        margin-top: 0px;
    }
    .hero-headline-3 {
        font-size: 3rem;
    }
    .hero-cta.type-3 {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        margin-top: 1.5rem;
    }

    /* Quick Nav Desktop */
    .quick-nav-bar {
        margin-top: -4rem; 
    }
    .quick-nav-links {
        grid-template-columns: repeat(6, 1fr);
    }

    /* Portfolio Desktop */
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, auto);
    }
    .portfolio-item-tall {
        grid-row: span 2 / span 2;
    }

    /* Product Desktop */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }

    /* Why Us Desktop */
    .why-us-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    /* Service Area Desktop */
    .service-area-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

/* ==================================
   MOBILE RESPONSIVE
==================================
*/
@media (max-width: 639px) {
    .hero-section {
        min-height: 40vh; 
        max-height: 680px;
    }

    .hero-slide {
        min-height: 40vh;
        padding-top: 0.75rem;   
        padding-bottom: 1rem;  
    }

    .hero-grid-container,
    .hero-grid-container-2 {
        padding-top: 1rem;     
        padding-bottom: 1rem;
        gap: 5px;
    }

    .hero-headline {
        font-size: 1.5rem; 
    }

    .hero-subheadline,
    .hero-subheadline-2 {
        margin-top: 0.5rem; 
        max-width: 90%;
    }

    .hero-image-circle {
        width: 10rem; 
        height: 10rem;
    }

    .whatsapp-icon {
        width: 4rem; 
        height: 3.5rem;
    }

    .hero-image-logo {
        font-size: 1.5rem;
    }

    .hide-on-mobile {
        display: none;
    }
}