/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    color: #5C4040;
    background-color: #FFFBF9;
    line-height: 1.6;
    overflow-x: hidden;
}

main {
    overflow-x: hidden;
    padding-top: 80px;
}

/* ===== CSS VARIABLES - WARM TERRACOTTA THEME ===== */
:root {
    /* Primary Palette - Terracotta */
    --primary: #C17F70;
    --primary-light: #E6A598;
    
    /* Accent Palette - Peach */
    --accent: #F3D7CA;
    --accent-light: #FFF0E8;
    
    /* Background & Text */
    --bg-light: #FFFBF9;
    --text-dark: #5C4040;
    --text-light: #8B6B6B;
    --white: #FFFFFF;
    --gray-300: #E8D5D5;
    
    /* Shadows - adjusted for warm tone */
    --shadow-sm: 0 4px 12px rgba(92, 64, 64, 0.08);
    --shadow-md: 0 8px 24px rgba(92, 64, 64, 0.12);
    --shadow-lg: 0 20px 40px rgba(92, 64, 64, 0.18);
    
    /* Transition & Fonts */
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 5rem;
    
    /* Radius */
    --radius-md: 8px;
    --radius-lg: 16px;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #E6A598 0%, #F3D7CA 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header--scrolled {
    background: rgba(255, 251, 249, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 0.8rem 0;
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 1001;
    transition: var(--transition);
}

.logo__img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2.5px solid #fff;
    object-fit: cover;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.1);
}

.header--scrolled .logo__img {
    width: 40px;
    height: 40px;
    border-color: var(--primary);
}

.logo__text {
    display: flex;
    flex-direction: column;
}

.logo__name {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    transition: var(--transition);
}

.header--scrolled .logo__name {
    color: var(--primary);
}

.logo__tagline {
    font-size: 0.65rem;
    color: #FFFBF9;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.header--scrolled .logo__tagline {
    color: var(--primary-light);
}

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

.nav__list {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav__link {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.header--scrolled .nav__link {
    color: var(--primary);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.header--scrolled .nav__link::after {
    background: var(--primary);
}

.nav__link:hover::after,
.nav__link--active::after {
    width: 100%;
}

.nav__link:hover,
.nav__link--active {
    color: #fff;
}

.header--scrolled .nav__link:hover,
.header--scrolled .nav__link--active {
    color: var(--primary-light);
}

/* CTA Button (Desktop) */
.nav__link--button {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: #fff !important;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.nav__link--button::after {
    display: none;
}

.nav__link--button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.header--scrolled .nav__link--button {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff !important;
    border: none;
    box-shadow: 0 4px 15px rgba(193, 127, 112, 0.3);
}

.header--scrolled .nav__link--button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(193, 127, 112, 0.5);
}

/* Hamburger Button (Mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
    transition: var(--transition);
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.hamburger__bar {
    width: 22px;
    height: 2.5px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

.header--scrolled .hamburger__bar {
    background: var(--primary);
}

.hamburger.active .hamburger__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: #fff;
}
.hamburger.active .hamburger__bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.active .hamburger__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: #fff;
}

.header--scrolled .hamburger.active .hamburger__bar {
    background: var(--primary);
}

/* ===== MOBILE NAVIGATION ===== */
.nav--mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: linear-gradient(145deg, #C17F70 0%, #A56558 100%);
    padding: 5rem 2rem 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1001;
    box-shadow: -5px 0 30px rgba(0,0,0,0.5);
    overflow-y: auto;
}

.nav--mobile.active {
    right: 0;
    opacity: 1;
    visibility: visible;
}

/* Close Button */
.nav--mobile__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid #F3D7CA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav--mobile__close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.nav--mobile__close i {
    color: #F3D7CA;
    font-size: 1.2rem;
}

/* Branding di mobile menu */
.nav--mobile__brand {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(243, 215, 202, 0.3);
}

.nav--mobile__brand .logo__name {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    display: block;
    margin-bottom: 0.3rem;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.nav--mobile__brand .logo__tagline {
    font-size: 0.8rem;
    color: #F3D7CA;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Menu Items Mobile */
.nav__list--mobile {
    flex-direction: column;
    gap: 0.8rem;
}

.nav__list--mobile .nav__link {
    display: block;
    padding: 1rem 1.5rem;
    color: #FFF0E8;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: left;
    border: 1.5px solid rgba(243, 215, 202, 0.25);
    background: rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
}

.nav__list--mobile .nav__link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(135deg, #F3D7CA 0%, #E6A598 100%);
    transition: width 0.3s ease;
    z-index: -1;
}

.nav__list--mobile .nav__link:hover::before,
.nav__list--mobile .nav__link--active::before {
    width: 100%;
}

.nav__list--mobile .nav__link:hover,
.nav__list--mobile .nav__link--active {
    color: #C17F70;
    transform: translateX(8px);
    border-color: #F3D7CA;
}

.nav__list--mobile .nav__link--button {
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(243, 215, 202, 0.25);
    color: #FFF0E8;
    box-shadow: none;
    font-weight: 500;
    margin-top: 0;
}

.nav__list--mobile .nav__link--button::before {
    display: block;
}

/* Overlay gelap di belakang menu */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1464349095431-e99a3b3eb33b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(193, 127, 112, 0.8) 0%, rgba(92, 64, 64, 0.6) 100%);
}

.hero__container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 1.2s ease-out;
}

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.hero__highlight {
    color: #F3D7CA;
    border-bottom: 3px solid #F3D7CA;
    display: inline-block;
    padding-bottom: 0.2rem;
}

.hero__subtitle {
    font-size: 1.3rem;
    margin-bottom: var(--space-lg);
    font-weight: 300;
    opacity: 0.95;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero__badge {
    margin-top: 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    background: rgba(243, 215, 202, 0.2);
    backdrop-filter: blur(5px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    border: 1px solid rgba(243, 215, 202, 0.3);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    background-color: transparent;
    color: inherit;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.btn--primary {
    background-color: #F3D7CA;
    color: #5C4040;
    box-shadow: var(--shadow-md);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

.btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.btn--primary:hover {
    background-color: #E6A598;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn--primary:hover::before {
    left: 100%;
}

.btn--primary i {
    margin-left: var(--space-xs);
    transition: transform 0.3s ease;
}

.btn--primary:hover i {
    transform: translateX(5px);
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-header__subtitle {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #C17F70;
    margin-bottom: var(--space-xs);
    font-weight: 400;
}

.section-header__title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: #C17F70;
    margin-bottom: var(--space-xs);
    font-weight: 600;
}

.section-header__desc {
    color: var(--text-light);
    font-size: 1rem;
}

/* ===== FILTER BUTTONS ===== */
.filter-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.filter-btn {
    background: transparent;
    border: 1.5px solid #C17F70;
    color: #C17F70;
    padding: 0.7rem 1.6rem;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
    min-width: 120px;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: #C17F70;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    width: 300px;
    height: 300px;
}

.filter-btn:hover,
.filter-btn.active {
    color: #fff;
    border-color: #C17F70;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(193, 127, 112, 0.3);
}

/* ===== PRODUCTS SECTION ===== */
.products {
    padding: var(--space-xxl) 0;
    background-color: var(--white);
}

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

.product-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(193, 127, 112, 0.1);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 40px -15px rgba(193, 127, 112, 0.3);
    border-color: #F3D7CA;
}

.product-card__image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: linear-gradient(45deg, var(--gray-300), #FFF0E8);
}

.product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover .product-card__image {
    transform: scale(1.08);
}

.product-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #F3D7CA, #E6A598);
    color: #5C4040;
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(243, 215, 202, 0.3);
    z-index: 2;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.product-card__content {
    padding: 1.5rem;
    text-align: center;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 251, 249, 0.5) 100%);
}

.product-card__name {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #C17F70;
    line-height: 1.3;
}

.product-card__description {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.6;
    min-height: 60px;
}

.product-card__price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #C17F70;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
}

.product-card__button {
    background: linear-gradient(135deg, #25D366, #128C7E); /* WhatsApp Brand Color */
    border: none;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 8px 15px -5px rgba(37, 211, 102, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    text-decoration: none;
}

.product-card__button:hover {
    background: linear-gradient(135deg, #128C7E, #0e6b5c);
    transform: translateY(-3px);
    box-shadow: 0 15px 20px -5px rgba(18, 140, 126, 0.4);
}

.product-card__button i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.product-card__button:hover i {
    transform: scale(1.1);
}

/* ===== GALLERY SECTION ===== */
.gallery {
    padding: var(--space-xxl) 0;
    background-color: #FFF0E8;
    overflow: hidden;
}

.gallery__track {
    display: flex;
    gap: var(--space-md);
    animation: scrollGallery 40s linear infinite;
    width: fit-content;
    padding: var(--space-sm) 0;
}

.gallery__track:hover {
    animation-play-state: paused;
}

.gallery__item {
    flex: 0 0 auto;
    width: 250px;
    height: 250px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery__item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes scrollGallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 10 - var(--space-md) * 10)); }
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: var(--space-xxl) 0;
    background-color: var(--white);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.service-card {
    text-align: center;
    padding: var(--space-lg);
    background-color: #FFF0E8;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-card i {
    font-size: 2.5rem;
    color: #C17F70;
    margin-bottom: var(--space-sm);
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: #C17F70;
    margin-bottom: var(--space-xs);
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.services__delivery {
    text-align: center;
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--gray-300);
}

.services__delivery h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: #C17F70;
    margin-bottom: var(--space-md);
}

.delivery-icons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.delivery-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background-color: #C17F70;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.delivery-icon i {
    font-size: 1.2rem;
}

.delivery-icon:hover {
    background-color: #F3D7CA;
    color: #5C4040;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: var(--space-xxl) 0;
    background: linear-gradient(135deg, #FFF0E8 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.about__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.about__slideshow {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.slideshow__container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slideshow__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    box-shadow: var(--shadow-md);
    border: 3px solid white;
}

.slideshow__img.active {
    opacity: 1;
    transform: scale(1);
    z-index: 10;
}

.about__content {
    text-align: left;
}

.about__content .section-header__title {
    font-size: 2.8rem;
}

.about__text {
    color: var(--text-light);
    margin: var(--space-md) 0 var(--space-lg);
    font-size: 1.15rem;
    line-height: 1.8;
    font-weight: 300;
}

.about__features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(243, 215, 202, 0.2);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: #F3D7CA;
}

.feature i {
    font-size: 1.8rem;
    color: #F3D7CA;
    transition: transform 0.3s ease;
}

.feature:hover i {
    transform: scale(1.1) rotate(5deg);
}

.feature span {
    font-size: 1rem;
    font-weight: 500;
    color: #C17F70;
}

.about__footnote {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    font-style: italic;
}

/* ===== CONTACT SECTION ===== */
.contact-new {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #FFF0E8 100%);
    position: relative;
    overflow: hidden;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #C17F70;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    background: rgba(193, 127, 112, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #C17F70;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-new__grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 2.5rem;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-new__map-container {
    height: 380px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
    border: 5px solid #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-new__map-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%) contrast(1.05);
    transition: filter 0.3s ease;
}

.contact-new__map-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #C17F70 0%, #E6A598 100%);
    color: #FFFFFF;
    padding: 1rem 2rem;
    border-radius: 60px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #F3D7CA;
    box-shadow: 0 10px 20px -5px rgba(193, 127, 112, 0.3);
    font-size: 1rem;
    letter-spacing: 0.5px;
    width: fit-content;
}

.contact-new__map-btn:hover {
    background: linear-gradient(135deg, #E6A598 0%, #F3D7CA 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(243, 215, 202, 0.4);
}

.contact-new__info-col {
    display: flex;
    align-items: center;
}

.contact-new__card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(243, 215, 202, 0.3);
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-new__item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.2rem 0;
    border-bottom: 1px dashed rgba(243, 215, 202, 0.3);
}

.contact-new__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-new__icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, #F3D7CA 0%, #E6A598 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5C4040;
    font-size: 1.5rem;
    box-shadow: 0 8px 15px -5px rgba(243, 215, 202, 0.4);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-new__detail {
    flex: 1;
}

.contact-new__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #C17F70;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.contact-new__value {
    font-size: 1rem;
    color: #C17F70;
    font-weight: 500;
    line-height: 1.5;
}

.contact-new__value a {
    color: #C17F70;
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px dotted transparent;
}

.contact-new__value a:hover {
    color: #E6A598;
    border-bottom-color: #E6A598;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #5C4040 0%, #3E2B2B 100%);
    color: #fff;
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer__container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.2fr;
    gap: 3rem;
    padding-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer__col {
    text-align: left;
}

.footer__heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #F3D7CA;
    position: relative;
    padding-bottom: 0.8rem;
    font-weight: 600;
}

.footer__heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #F3D7CA, transparent);
}

.footer__text {
    color: #FFF0E8;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    border: 1px solid rgba(243, 215, 202, 0.3);
}

.social-link:hover {
    background: linear-gradient(135deg, #F3D7CA 0%, #E6A598 100%);
    color: #5C4040;
    transform: translateY(-5px) scale(1.1);
    border-color: #F3D7CA;
    box-shadow: 0 10px 20px rgba(243, 215, 202, 0.3);
}

.footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__list li {
    margin-bottom: 0.8rem;
    color: #FFF0E8;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

.footer__list i {
    color: #F3D7CA;
    width: 20px;
    font-size: 1rem;
    margin-top: 0.2rem;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.payment-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #FFF0E8;
    border: 1.5px solid rgba(243, 215, 202, 0.3);
    transition: all 0.3s ease;
}

.payment-icon--bank {
    background: rgba(243, 215, 202, 0.1);
    border-color: rgba(243, 215, 202, 0.5);
}

.payment-icon i {
    font-size: 1.3rem;
    color: #F3D7CA;
}

.payment-icon span {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.payment-icon:hover {
    background: rgba(243, 215, 202, 0.2);
    transform: translateY(-3px);
    border-color: #F3D7CA;
    color: #fff;
    box-shadow: 0 5px 15px rgba(243, 215, 202, 0.3);
}

.footer__payment-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #FFF0E8;
    opacity: 0.7;
    font-style: italic;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    text-align: center;
    color: #FFF0E8;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.2);
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366; /* Tetap hijau untuk brand recognition */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 999;
    text-decoration: none;
}

.floating-wa:hover {
    background-color: #128C7E;
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ===== FLOATING ELEMENTS (HERO) ===== */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.float-item {
    position: absolute;
    color: rgba(243, 215, 202, 0.3);
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

.float-item--1 { top: 20%; left: 10%; animation-delay: 0s; font-size: 2.5rem; }
.float-item--2 { top: 60%; left: 15%; animation-delay: 1s; font-size: 1.8rem; }
.float-item--3 { top: 30%; right: 12%; animation-delay: 2s; font-size: 2.2rem; }
.float-item--4 { bottom: 25%; right: 18%; animation-delay: 3s; font-size: 2rem; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-20px) rotate(10deg); opacity: 0.6; }
}

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

/* ===== PERFORMANCE OPTIMIZATION ===== */
.footer__col {
    will-change: transform;
    transition: opacity 0.3s ease;
}

.footer__container {
    contain: layout style;
}

/* ===== MEDIA QUERIES ===== */

/* Tablet */
@media screen and (max-width: 992px) {
    .products__grid { grid-template-columns: repeat(2, 1fr); }
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .about__container { grid-template-columns: 1fr; gap: var(--space-lg); }
    .about__slideshow { height: 400px; }
    .contact-new__grid { grid-template-columns: 1fr; }
    .footer__container { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile */
@media screen and (max-width: 768px) {
    html {
        scroll-padding-top: 70px;
    }

    main { padding-top: 70px; }

    .header { padding: 0.8rem 0; }
    .header__container { padding: 0 1rem; }
    .logo__img { width: 40px; height: 40px; }
    .logo__name { font-size: 1.1rem; }
    .logo__tagline { font-size: 0.6rem; }

    .nav--desktop { display: none; }
    .hamburger { display: flex; width: 40px; height: 40px; }
    .hamburger__bar { width: 20px; }

    .hero { min-height: 80vh; }
    .hero__title { font-size: 2.5rem; }
    .hero__subtitle { font-size: 1.1rem; }

    .section-header__title { font-size: 1.8rem; }

    .filter-container { gap: 0.5rem; }
    .filter-btn { padding: 0.5rem 1rem; font-size: 0.75rem; min-width: 90px; }

    .products__grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .product-card { max-width: 350px; margin: 0 auto; }
    .product-card__content { padding: 1.2rem; }
    .product-card__name { font-size: 1.1rem; }
    .product-card__description { font-size: 0.85rem; min-height: 50px; }
    .product-card__button { padding: 0.6rem 1rem; font-size: 0.8rem; }

    .gallery__item { width: 140px; height: 140px; }
    @keyframes scrollGallery {
        100% { transform: translateX(calc(-140px * 10 - var(--space-md) * 10)); }
    }

    .services__grid { grid-template-columns: 1fr; gap: 1.2rem; }
    .service-card { padding: 1.5rem; }

    .about__slideshow { height: 300px; margin-bottom: var(--space-lg); }
    .about__content { text-align: center; }
    .about__content .section-header__title { font-size: 2rem; }
    .about__features { justify-content: center; }

    .contact-title { font-size: 2.3rem; }
    .contact-new__map-container { height: 250px; }
    .contact-new__card { padding: 1.8rem; }

    /* Footer Mobile Optimization */
    .footer__container { 
        grid-template-columns: 1fr !important; 
        gap: 2.5rem !important; 
        padding: 0 1.5rem; 
        text-align: center; 
    }
    .footer__col { 
        text-align: center !important; 
        display: flex;
        flex-direction: column;
        align-items: center; 
    }
    .footer__heading::after { 
        left: 50% !important; 
        transform: translateX(-50%) !important; 
    }
    .footer__heading {
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
    }
    .footer__social { justify-content: center; }
    .footer__list { 
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .footer__list li { 
        justify-content: center !important; 
        width: 100%; 
        max-width: 300px; 
    }
    .payment-methods { 
        justify-content: center !important; 
        align-items: center !important; 
        width: 100%; 
    }
    .payment-icon {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 0.9rem 1rem;
        font-size: 0.9rem;
    }

    .floating-wa { width: 50px; height: 50px; font-size: 1.7rem; bottom: 20px; right: 20px; }

    .about__container {
        display: flex;
        flex-direction: column;
    }
    .about__slideshow { order: 2; }
    .about__content { order: 1; }

    .footer { padding: 3rem 0 0; }
    .footer__bottom {
        padding: 1.2rem 1rem;
        font-size: 0.85rem;
        line-height: 1.5;
    }
    .footer__list a,
    .social-link,
    .payment-icon {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
}

/* Mobile kecil */
@media screen and (max-width: 480px) {
    .nav--mobile { width: 280px; padding: 4rem 1.5rem; }
    .nav--mobile__brand .logo__name { font-size: 1.5rem; }

    .product-card__description { font-size: 0.8rem; min-height: 45px; }
    .product-card__button { padding: 0.55rem 0.9rem; font-size: 0.75rem; }

    .contact-title { font-size: 2rem; }
    .contact-new__map-btn { width: 100%; justify-content: center; }
}

/* Paksakan gaya tombol Hubungi Kami di mobile agar seragam */
@media screen and (max-width: 768px) {
    .nav__list--mobile .nav__link--button {
        background: rgba(255, 255, 255, 0.03) !important;
        border: 1.5px solid rgba(243, 215, 202, 0.25) !important;
        color: #FFF0E8 !important;
        box-shadow: none !important;
        font-weight: 500 !important;
        margin-top: 0 !important;
    }

    .nav__list--mobile .nav__link--button:hover {
        color: #C17F70 !important;
    }
}
.nama-class-garis {
    display: none !important;
}
/* ===== CONTACT SECTION - MOBILE OPTIMIZATION ===== */

/* Tablet */
@media screen and (max-width: 992px) {
    .contact-new__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-new__map-container {
        height: 300px;
        border-radius: 20px;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .contact-new {
        padding: 3rem 0;
    }
    
    .contact-header {
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .contact-subtitle {
        font-size: 0.75rem;
        padding: 0.4rem 1.2rem;
        letter-spacing: 2px;
    }
    
    .contact-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .contact-new__grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 0 1rem;
    }
    
    /* Map Container - Mobile */
    .contact-new__map-container {
        height: 250px;
        border-radius: 20px;
        border-width: 3px;
        order: 2;
    }
    
    .contact-new__map-container iframe {
        filter: grayscale(30%) contrast(1.1);
    }
    
    /* Map Button - Mobile */
    .contact-new__map-btn {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
        margin-top: 1rem;
        border-radius: 50px;
    }
    
    /* Info Column - Mobile */
    .contact-new__info-col {
        order: 1;
        width: 100%;
    }
    
    /* Contact Card - Mobile */
    .contact-new__card {
        padding: 1.5rem 1.2rem;
        border-radius: 20px;
        box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    }
    
    /* Contact Items - Mobile */
    .contact-new__item {
        padding: 1rem 0;
        gap: 1rem;
        flex-direction: row;
        align-items: flex-start;
    }
    
    .contact-new__item:last-child {
        padding-bottom: 0.5rem;
    }
    
    /* Icon - Mobile */
    .contact-new__icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        border-radius: 12px;
        flex-shrink: 0;
        min-width: 45px;
    }
    
    /* Detail Section - Mobile */
    .contact-new__detail {
        flex: 1;
        min-width: 0; /* Prevent text overflow */
    }
    
    .contact-new__label {
        font-size: 0.7rem;
        margin-bottom: 0.2rem;
        letter-spacing: 0.8px;
    }
    
    .contact-new__value {
        font-size: 0.9rem;
        line-height: 1.5;
        word-break: break-word; /* Break long text */
    }
    
    .contact-new__value a {
        display: inline-block;
        word-break: break-word;
    }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
    .contact-new {
        padding: 2.5rem 0;
    }
    
    .contact-title {
        font-size: 1.6rem;
    }
    
    .contact-new__grid {
        gap: 1.5rem !important;
        padding: 0 0.75rem;
    }
    
    .contact-new__map-container {
        height: 220px;
        border-radius: 16px;
        border-width: 2px;
    }
    
    .contact-new__card {
        padding: 1.2rem 1rem;
        border-radius: 16px;
    }
    
    .contact-new__item {
        padding: 0.9rem 0;
        gap: 0.8rem;
    }
    
    .contact-new__icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        border-radius: 10px;
        min-width: 40px;
    }
    
    .contact-new__label {
        font-size: 0.65rem;
    }
    
    .contact-new__value {
        font-size: 0.85rem;
    }
    
    .contact-new__map-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Very Small Mobile */
@media screen and (max-width: 360px) {
    .contact-title {
        font-size: 1.4rem;
    }
    
    .contact-new__map-container {
        height: 200px;
    }
    
    .contact-new__card {
        padding: 1rem 0.8rem;
    }
    
    .contact-new__item {
        padding: 0.8rem 0;
    }
    
    .contact-new__value {
        font-size: 0.8rem;
    }
}

/* Landscape Mobile */
@media screen and (max-width: 768px) and (orientation: landscape) {
    .contact-new__map-container {
        height: 200px;
    }
    
    .contact-new__card {
        padding: 1.2rem;
    }
    
    .contact-new__item {
        padding: 0.8rem 0;
    }
}
/* ===== CONTACT SECTION - UPDATED (No Map, Centered) ===== */

.contact-new {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #faf4e9 100%);
    position: relative;
    overflow: hidden;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.contact-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #d9b382;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    background: rgba(217, 179, 130, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #7b4b2d;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Grid - Hilangkan map, full width untuk info */
.contact-new__grid {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Sembunyikan map container */
.contact-new__map-container {
    display: none !important;
}

/* Info Column - Full width & centered */
.contact-new__info-col {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.contact-new__card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 60px -15px rgba(123, 75, 45, 0.15);
    border: 1px solid rgba(217, 179, 130, 0.2);
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-new__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px -15px rgba(123, 75, 45, 0.2);
}

.contact-new__item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem 0;
    border-bottom: 1px dashed rgba(217, 179, 130, 0.3);
    transition: all 0.3s ease;
}

.contact-new__item:last-child {
    border-bottom: none;
    padding-bottom: 0.5rem;
}

.contact-new__item:first-child {
    padding-top: 0;
}

.contact-new__item:hover {
    transform: translateX(5px);
}

.contact-new__icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d9b382 0%, #b17e55 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    box-shadow: 0 8px 20px -5px rgba(217, 179, 130, 0.4);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-new__item:hover .contact-new__icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px -5px rgba(217, 179, 130, 0.5);
}

.contact-new__detail {
    flex: 1;
    min-width: 0;
}

.contact-new__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #d9b382;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.contact-new__value {
    font-size: 1rem;
    color: #7b4b2d;
    font-weight: 500;
    line-height: 1.6;
    word-break: break-word;
}

.contact-new__value a {
    color: #7b4b2d;
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px dotted transparent;
}

.contact-new__value a:hover {
    color: #d9b382;
    border-bottom-color: #d9b382;
}

/* Tombol map dihilangkan */
.contact-new__map-btn {
    display: none !important;
}

/* ===== MOBILE OPTIMIZATION ===== */
@media screen and (max-width: 768px) {
    .contact-new {
        padding: 3.5rem 0;
    }
    
    .contact-header {
        margin-bottom: 2.5rem;
    }
    
    .contact-subtitle {
        font-size: 0.75rem;
        padding: 0.4rem 1.2rem;
        letter-spacing: 2px;
    }
    
    .contact-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .contact-new__grid {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .contact-new__info-col {
        max-width: 100%;
    }
    
    .contact-new__card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
        box-shadow: 0 15px 50px -15px rgba(123, 75, 45, 0.15);
    }
    
    .contact-new__item {
        padding: 1.2rem 0;
        gap: 1rem;
    }
    
    .contact-new__icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        border-radius: 12px;
    }
    
    .contact-new__label {
        font-size: 0.7rem;
        margin-bottom: 0.25rem;
    }
    
    .contact-new__value {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
    .contact-new {
        padding: 3rem 0;
    }
    
    .contact-title {
        font-size: 1.6rem;
    }
    
    .contact-new__card {
        padding: 1.8rem 1.2rem;
        border-radius: 18px;
    }
    
    .contact-new__item {
        padding: 1rem 0;
        gap: 0.9rem;
    }
    
    .contact-new__icon {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
        border-radius: 10px;
    }
    
    .contact-new__label {
        font-size: 0.65rem;
    }
    
    .contact-new__value {
        font-size: 0.9rem;
    }
}

/* Landscape Mobile */
@media screen and (max-width: 768px) and (orientation: landscape) {
    .contact-new {
        padding: 2.5rem 0;
    }
    
    .contact-new__card {
        padding: 1.5rem;
    }
    
    .contact-new__item {
        padding: 0.9rem 0;
    }
}