/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner .show {
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

/*** Back to Top Start ***/
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}
/*** Back to Top End ***/

/*** CSS Custom Properties - Color & Shadow Definitions ***/
:root {
    --primary: #107c10;
    --primary-dark: #0a5c0a;
    --primary-light: #e8f5e9;
    --dark: #1f2937;
    --gray: #6b7280;
    --light-gray: #f5f5f5;
    --lighter-gray: #fafafa;
    --border: #efefef;
    --border-light: #f0f0f0;
    --white: #ffffff;
    --orange: #ff9900;
    --red: #dc2626;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0 1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/*** Global Animations ***/
@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {
    0%,
    100% {
        box-shadow: 0 0 20px rgba(16, 124, 16, 0),
            0 8px 16px rgba(0, 0, 0, 0.12);
    }
    50% {
        box-shadow: 0 0 30px rgba(16, 124, 16, 0 3),
            0 12px 24px rgba(0, 0, 0, 0.18);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: 0.5s;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-square {
    width: 32px;
    height: 32px;
}
.btn-sm-square {
    width: 34px;
    height: 34px;
}
.btn-md-square {
    width: 44px;
    height: 44px;
}
.btn-lg-square {
    width: 56px;
    height: 56px;
}
.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn .btn-primary {
    color: var(--white);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--dark);
    color: var(--white);
}

.btn.btn-light {
    color: var(--primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--white);
    background: var(--dark);
}

.btn.btn-dark {
    color: var(--white);
    border: none;
}

.btn .btn-dark:hover {
    color: var(--primary);
    background: var(--light-gray);
}
/*** Button End ***/

/******************************************
 * HERO CAROUSEL – FINAL STABLE VERSION
 ******************************************/

/* ========================
    WRAPPER
======================== */
.header-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* OWL HEIGHT FIX */
.header-carousel .owl-stage-outer,
.header-carousel .owl-stage,
.header-carousel .owl-item {
    height: 100vh !important;
}

/* ========================
    SLIDE ITEM
======================== */
.header-carousel .header-carousel-item {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;

    /* DESKTOP BG */
    background-image: var(--desktop-bg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* ========================
    BACKGROUND LAYER
======================== */
.header-carousel .header-carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: var(--desktop-bg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    z-index: 0;
}

/* ========================
    FORCE MOBILE IMAGE
======================== */
@media (max-width: 768px) {
    .header-carousel .header-carousel-item::before {
        background-image: var(--mobile-bg) !important;
    }
}

/* ========================
    CONTENT LAYER
======================== */
.header-carousel .header-carousel-item > * {
    position: relative;
    z-index: 2;
}

/* ========================
    CAPTION PANEL
======================== */
.header-carousel .carousel-caption {
    position: absolute;
    left: 60px;
    bottom: 120px;
    max-width: 650px;
    padding: 40px;

    background: rgba(0, 0, 0, 0.55);
    border-radius: 16px;
    backdrop-filter: blur(8px);

    z-index: 10;
    text-align: left;
}

/* TITLE */
.header-carousel .carousel-caption h1 {
    color: #fff;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    font-size: clamp(32px, 6vw, 64px);
}

/* SUBTITLE */
.header-carousel .carousel-caption h4 {
    color: #fff;
    margin-bottom: 12px;
    font-weight: 700;
    font-size: clamp(14px, 2vw, 22px);
}

/* DESCRIPTION */
.header-carousel .carousel-caption p {
    color: #f0f0f0;
    margin-bottom: 25px;
    font-size: clamp(14px, 1.8vw, 18px);
    line-height: 1.5;
}

/* ========================
    BUTTON
======================== */
.header-carousel .carousel-caption .btn {
    border-radius: 30px;
    padding: 12px 28px;
    font-size: 14px;
}

/* ========================
    ARROWS
======================== */
.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 60px;
    height: 60px;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);

    font-size: 28px;
    display: flex;
    justify-content: center;
    align-items: center;

    transition: 0.2s ease;
    z-index: 999;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: #fff;
}

.header-carousel .owl-nav .owl-prev {
    left: 30px;
}

.header-carousel .owl-nav .owl-next {
    right: 30px;
}

/* ========================
    DOTS
======================== */
.header-carousel .owl-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    gap: 10px;
    z-index: 999;
}

.header-carousel .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.5);
    transition: 0.3s;
}

.header-carousel .owl-dot.active {
    width: 30px;
    border-radius: 6px;
    background: #fff;
}

/* ========================
    HIDE NAV IF SINGLE
======================== */
.header-carousel .single-slide .owl-nav,
.header-carousel .single-slide .owl-dots {
    display: none !important;
}

/* ========================
    MOBILE LAYOUT
======================== */
@media (max-width: 768px) {
    .header-carousel .carousel-caption {
        left: 15px;
        right: 15px;
        bottom: 40px;
        padding: 18px 20px;
        max-width: 100%;
        border-radius: 20px;
    }

    .header-carousel .carousel-caption h1 {
        font-size: 22px !important;
        line-height: 1.3;
    }

    .header-carousel .carousel-caption h4 {
        font-size: 12px !important;
    }

    .header-carousel .carousel-caption p {
        font-size: 13px !important;
        line-height: 1.4;
    }

    .header-carousel .carousel-caption .btn {
        padding: 9px 20px !important;
        font-size: 13px !important;
    }

    .header-carousel .owl-nav {
        display: none !important;
    }

    .header-carousel .owl-dots {
        bottom: 18px !important;
    }
}

/* ========================
    EXTRA SMALL MOBILE
======================== */
@media (max-width: 480px) {
    .header-carousel .carousel-caption {
        bottom: 30px !important;
        padding: 15px 16px;
    }

    .header-carousel .carousel-caption h1 {
        font-size: 20px !important;
    }

    .header-carousel .carousel-caption p {
        font-size: 12px !important;
    }

    .header-carousel .owl-dots {
        bottom: 14px !important;
    }
}

/***********************************************/
/*** HERO CAROUSEL END ***/
/***********************************************/

/***********************************************/
/*** SERVICE SECTION START (UPDATED & FIXED) ***/
/***********************************************/

/*** Service Start (Original Design + FIX Hover Text) ***/

/* Image */
.service-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service .service-item {
    border-radius: 10px;
}

/* IMAGE WRAPPER */
.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.1);
}

/* GREEN OVERLAY ON IMAGE */
.service .service-item .service-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(16, 124, 16, 0.2);
    transition: 0 5s;
    z-index: 1;
}

.service .service-item:hover .service-img::after {
    height: 100%;
}

/* SERVICE ICON */
.service .service-item .service-img .service-icon {
    position: absolute;
    width: 70px;
    bottom: 0;
    right: 25px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 9;
}

.service .service-item .service-img .service-icon i {
    color: var(--primary);
    transition: 0.5s;
}

.service .service-item:hover .service-img .service-icon i {
    transform: rotateX(360deg);
    color: var(--white);
}

.service .service-item:hover .service-img .service-icon {
    bottom: 0;
    color: var(--white);
    background: var(--primary);
}

/* CONTENT BOX */
.service .service-content {
    position: relative;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--light-gray);
    z-index: 2;
}

/* FIX agar teks berada di atas overlay */
.service .service-content * {
    position: relative;
    z-index: 10;
    transition: 0.5s;
}

/* ORIGINAL TRANSITION */
.service .service-item .service-content .h4,
.service .service-item .service-content p {
    transition: 0 5s;
}

/* HOVER → TEKS MENJADI PUTIH */
.service .service-item:hover .service-content .h4,
.service .service-item:hover .service-content p,
.service .service-item:hover .service-content a {
    color: #ffffff !important;
}

/* GREEN HOVER OVERLAY ON CONTENT */
.service .service-item .service-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--primary);
    transition: 0.5s;
    z-index: 0 !important; /* overlay tetap di bawah teks */
}

.service .service-item:hover .service-content::after {
    height: 100%;
}

/*** Services Section - 2 Kolom di Mobile ***/
@media (max-width: 767px) {
    .service-item {
        margin-bottom: 0;
    }

    .service-item .service-content {
        padding: 15px !important;
    }

    .service-item .service-content .h4 {
        font-size: 14px;
        margin-bottom: 10px !important;
    }

    .service-item .service-content p {
        font-size: 11px;
        line-height: 1.4;
    }

    .service-item img {
        height: 180px;
    }
}

/*** Service End ***/

/*********************************************/
/*** SERVICE SECTION END (UPDATED & FIXED) ***/
/*********************************************/

/*** Contact Start ***/
.contact-img {
    position: relative;
    height: 100%;
}

.contact-img-inner {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
}

.contact .contact-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
    animation-name: image-efects;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 0.5s;
}

.contact .contact-img .contact-img-inner {
    position: relative;
    z-index: 9;
}

@media (max-width: 768px) {
    .contact-img-inner {
        top: 50%;
        max-width: 100%;
    }
}
/*** Contact End ***/

/*** Products Section Start ***/
.products-section {
    background: var(--lighter-gray);
    padding: 40px 0;
}

.products-header {
    text-align: center;
    margin-bottom: 40px;
}

.products-header h4 {
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
}

.products-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--primary);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    min-height: 220px;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--light-gray);
}

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

.badge-container {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.discount-badge {
    background: var(--red);
    color: white;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    box-shadow: 0 2px 4px rgba(220, 38, 38, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.featured-badge {
    background: var(--orange);
    color: white;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(255, 153, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.logo-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 52px;
    height: 52px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: scale(0 7);
    transition: all 0.4s cubic-bezier(0 34, 1.56, 0.64, 1);
    z-index: 3;
    border: 2 5px solid var(--primary);
    backdrop-filter: blur(4px);
}

.logo-badge img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.product-card:hover .logo-badge {
    opacity: 1;
    transform: scale(1);
}

.product-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.35;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: -0.2px;
}

.product-divider {
    height: 1px;
    background: var(--border-light);
    margin-bottom: 12px;
}

.product-seller {
    font-size: 11px;
    color: var(--gray);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.product-seller i {
    font-size: 10px;
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 11px;
}

.badge-official {
    color: var(--primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.badge-official i {
    font-size: 9px;
}

.stock-info {
    color: var(--gray);
    font-weight: 500;
    font-size: 10px;
}

.products-footer {
    text-align: center;
}

@media (max-width: 1400px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
    }
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .products-header h1 {
        font-size: 2rem;
    }

    .product-title {
        font-size: 12px;
    }
}

/*** Products Section - 2 Kolom di Mobile ***/
@media (max-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }

    .product-card {
        font-size: 11px;
    }

    .product-title {
        font-size: 11px;
    }

    .product-info {
        padding: 10px;
    }

    .products-header h1 {
        font-size: 1.75rem;
    }

    .logo-badge {
        width: 44px;
        height: 44px;
    }

    .logo-badge img {
        width: 30px;
        height: 30px;
    }

    .product-image-wrapper {
        min-height: 200px;
    }
}
/*** Products Section End ***/

/*** Brand & Partner Section Start ***/
.brand-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.brand-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
            circle at 20% 50%,
            rgba(16, 124, 16, 0.05) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(16, 124, 16, 0.05) 0%,
            transparent 50%
        );
    pointer-events: none;
}

.brand-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.brand-header h4 {
    color: #107c10;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1 2px;
    margin-bottom: 15px;
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards;
}

.brand-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1f2937 0%, #107c10 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.brand-header p {
    color: #6b7280;
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.brand-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.brand-item-wrapper {
    perspective: 1000px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    position: relative;
}

.brand-item-wrapper:nth-child(1) {
    animation-delay: 0.5s;
}
.brand-item-wrapper:nth-child(2) {
    animation-delay: 0.6s;
}
.brand-item-wrapper:nth-child(3) {
    animation-delay: 0.7s;
}
.brand-item-wrapper:nth-child(4) {
    animation-delay: 0.8s;
}
.brand-item-wrapper:nth-child(5) {
    animation-delay: 0.9s;
}
.brand-item-wrapper:nth-child(6) {
    animation-delay: 1s;
}
.brand-item-wrapper:nth-child(7) {
    animation-delay: 1.1s;
}
.brand-item-wrapper:nth-child(8) {
    animation-delay: 1.2s;
}

.brand-item {
    background: transparent;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0 34, 1.56, 0.64, 1);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    position: relative;
    min-width: 160px;
    min-height: 160px;
}

.brand-item:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-12px) scale(1.05);
    animation: float 3s ease-in-out infinite;
}

.brand-logo {
    max-height: 140px;
    max-width: 140px;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.12)) brightness(1);
    position: relative;
    z-index: 1;
}

.brand-item:hover .brand-logo {
    transform: scale(1.15) rotate(-2deg);
    filter: drop-shadow(0 15px 30px rgba(16, 124, 16, 0.25)) brightness(1.05);
}

.brand-item a {
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    position: relative;
    z-index: 2;
}

@media (max-width: 1200px) {
    .brand-section {
        padding: 60px 0;
    }
    .brand-header h1 {
        font-size: 2 3rem;
    }
    .brand-logo {
        max-height: 120px;
        max-width: 120px;
    }
    .brand-item {
        padding: 30px 20px;
        min-width: 140px;
        min-height: 140px;
    }
}

@media (max-width: 768px) {
    .brand-section {
        padding: 50px 0;
    }
    .brand-header h1 {
        font-size: 2rem;
    }
    .brand-header p {
        font-size: 0.95rem;
    }
    .brand-item {
        padding: 25px 15px;
        min-width: 120px;
        min-height: 120px;
    }
    .brand-logo {
        max-height: 100px;
        max-width: 100px;
    }
    .brand-row {
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .brand-section {
        padding: 40px 0;
    }
    .brand-header h1 {
        font-size: 1.5rem;
    }
    .brand-header h4 {
        font-size: 12px;
    }
    .brand-header p {
        font-size: 0.9rem;
    }
    .brand-item {
        padding: 20px 10px;
        min-width: 100px;
        min-height: 100px;
    }
    .brand-logo {
        max-height: 80px;
        max-width: 80px;
    }
    .brand-row {
        gap: 12px;
    }
}
/*** Brand & Partner Section End ***/

/*** Contact Info Cards - Modern Design ***/
.contact-info-card {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0 08);
    transition: all 0.4s cubic-bezier(0 175, 0.885, 0.32, 1.275);
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
}

.contact-info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(16, 124, 16, 0.05) 0%,
        rgba(16, 124, 16, 0.02) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-info-card:hover::before {
    opacity: 1;
}

.contact-info-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(16, 124, 16, 0.2);
    border-color: var(--primary);
}

.contact-info-card .icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.contact-info-card .icon-wrapper i {
    font-size: 32px;
    color: #ffffff;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.contact-info-card:hover .icon-wrapper {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Address Card - Blue Gradient */
.address-card .icon-wrapper {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.address-card:hover {
    border-color: #3b82f6;
}

/* Email Card - Green Gradient */
.email-card .icon-wrapper {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.email-card:hover {
    border-color: #10b981;
}

/* Phone Card - Purple Gradient */
.phone-card .icon-wrapper {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}

.phone-card:hover {
    border-color: #8b5cf6;
}

.contact-info-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.contact-info-card p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    word-break: break-word;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(16, 124, 16, 0.1) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.contact-info-card:hover .card-glow {
    opacity: 1;
    animation: glow 2s ease-in-out infinite;
}

@media (max-width: 768px) {
    .contact-info-card {
        padding: 30px 20px;
    }

    .contact-info-card .icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .contact-info-card .icon-wrapper i {
        font-size: 28px;
    }

    .contact-info-card h4 {
        font-size: 16px;
    }

    .contact-info-card p {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .contact-info-card {
        padding: 25px 15px;
    }

    .contact-info-card .icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .contact-info-card .icon-wrapper i {
        font-size: 24px;
    }
}

/*** About Section Mobile Responsive ***/
@media (max-width: 767px) {
    .about-item-content {
        padding: 30px 20px !important;
    }

    .about-item-content h1 {
        font-size: 1.8rem !important;
    }

    .about-item-content h4 {
        font-size: 14px;
    }

    .about-item-content p {
        font-size: 14px;
        line-height: 1.6;
    }
}

/*** Utility Classes ***/
@media (max-width: 768px) {
    .larger-mobile {
        width: 95% !important;
        margin: 0 auto;
        padding: 20px;
    }

    .btn-switch-auth {
        min-width: 200px !important;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
