/*------------------------------------------------------------------
	Custom Styles - Promo Section & Modern Footer
-------------------------------------------------------------------*/

body.smd {
    font-family: 'Poppins', sans-serif;
}

body.smd h1,
body.smd h2,
body.smd h3,
body.smd h4,
body.smd h5,
body.smd h6 {
    font-family: 'Poppins', sans-serif;
}

body.smd .header_top,
body.smd .header_bottom,
body.smd #navbar_menu ul li a,
body.smd .social_icon ul li a,
body.smd .topbar-hightlight a,
body.smd .make_appo .btn {
    font-family: 'Poppins', sans-serif;
}

/* ========== PROMO SECTION MODERN ========== */

.promo-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.promo-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.promo-card-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.promo-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.promo-card:hover .promo-card-image img {
    transform: scale(1.1);
}

.promo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff4e50, #f9d423);
    color: #fff;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 3px 10px rgba(255,78,80,0.4);
}

.promo-card-content {
    padding: 25px;
}

.promo-date {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.promo-card-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.promo-card:hover .promo-card-content h3 {
    color: #ff4e50;
}

.promo-card-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff4e50;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.promo-btn:hover {
    color: #1a1a1a;
    gap: 12px;
}

.promo-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

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

/* ========== MODERN FOOTER ========== */

.modern-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    padding: 80px 0 0;
    position: relative;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff4e50, #f9d423, #ff4e50);
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .footer-logo {
    margin-bottom: 20px;
}

.footer-brand .footer-logo img {
    height: 60px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.social-media {
    display: flex;
    gap: 12px;
}

.social-media a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-media a:hover {
    background: linear-gradient(135deg, #ff4e50, #b80000);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,78,80,0.4);
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
    padding-bottom: 15px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(135deg, #ff4e50, #f9d423);
    border-radius: 2px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '›';
    font-size: 16px;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #f9d423;
    padding-left: 5px;
}

.footer-links a:hover::before {
    color: #f9d423;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-item i {
    color: #f9d423;
    font-size: 18px;
    margin-top: 3px;
}

.footer-contact-item p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.footer-contact-item a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: #f9d423;
}

/* Newsletter Section */
.newsletter-section {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 50px;
    text-align: center;
}

.newsletter-section h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.newsletter-section p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    background: rgba(255,255,255,0.9);
    color: #1a1a1a;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form button {
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(135deg, #ff4e50, #f9d423);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255,78,80,0.4);
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0;
    background: rgba(0,0,0,0.2);
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #f9d423;
}

/* ========== CONTEMPORARY HEADER ========== */

.header_top.modern-topbar {
    background: linear-gradient(135deg, #0f3193 100%);
    backdrop-filter: blur(10px);
    border-bottom: 5px solid rgba(255,255,255,0.15);
    min-height: 48px;
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.header_top.modern-topbar .row {
    width: 100%;
    display: flex;
    align-items: center;
}

.header_top.modern-topbar .col-md-8 {
    display: flex;
    align-items: center;
}

.header_top.modern-topbar .topbar-left {
    float: none;
}

.header_top.modern-topbar .topbar-left .list-inline {
    float: none;
    margin: 0;
}

.header_top.modern-topbar .right_section_header_top {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header_top.modern-topbar .make_appo {
    float: none;
}

.header-top-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.make_appo .btn.white_btn.modern-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 700;
    font-size: 12px;
    padding: 10px 28px;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, #ff0000, #d32f2f);
    color: #fff;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    box-shadow: 0 3px 12px rgba(183,28,28,0.35);
    line-height: 1;
    text-align: center;
}

.make_appo .btn.white_btn.modern-cta:hover {
    background: linear-gradient(135deg, #e20000, #ff6600);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.5);
}

/* ========== KATALOG MENU SECTION ========== */

.katalog-menu-section {
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.katalog-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.katalog-menu-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #0f3193 0%, #1565c0 40%, #0d47a1 100%);
    padding: 50px 40px;
    border-radius: 24px;
    width: 100%;
    text-decoration: none;
    position: relative;
    box-shadow: 0 12px 40px rgba(183,28,28,0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.katalog-menu-card.card-tebus {
    background: linear-gradient(135deg, #0f3193 0%, #1565c0 40%, #0d47a1 100%);
    box-shadow: 0 12px 40px rgba(13,71,161,0.3);
}

.katalog-menu-card.card-tebus:hover {
    box-shadow: 0 20px 50px rgba(13,71,161,0.45);
}

.katalog-menu-card.card-weekend {
    background: linear-gradient(135deg, #e65100 0%, #f57c00 40%, #ef6c00 100%);
    box-shadow: 0 12px 40px rgba(230,81,0,0.3);
}

.katalog-menu-card.card-weekend:hover {
    box-shadow: 0 20px 50px rgba(230,81,0,0.45);
}

.katalog-menu-card.card-katalog {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 40%, #388e3c 100%);
    box-shadow: 0 12px 40px rgba(27,94,32,0.3);
}

.katalog-menu-card.card-katalog:hover {
    box-shadow: 0 20px 50px rgba(27,94,32,0.45);
}

.katalog-menu-card.card-tebus .katalog-menu-btn-inner {
    color: #0d47a1;
}

.katalog-menu-card.card-weekend .katalog-menu-btn-inner {
    color: #e65100;
}

.katalog-menu-card.card-katalog .katalog-menu-btn-inner {
    color: #1b5e20;
}

.katalog-menu-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 24px;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.06) 0%, transparent 60%),
                radial-gradient(circle at 70% 50%, rgba(255,255,255,0.04) 0%, transparent 60%);
    pointer-events: none;
}

.katalog-menu-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    border-radius: 0 0 24px 24px;
}

.katalog-menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(183,28,28,0.45);
}

.katalog-menu-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    padding: 8px 24px;
    border-radius: 30px;
    margin-bottom: 22px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.2);
}

.katalog-menu-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.3;
}

.katalog-menu-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    line-height: 1.6;
}

.katalog-menu-btn-inner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #fff;
    color: #b71c1c;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 36px;
    border-radius: 50px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    letter-spacing: 0.5px;
}

.katalog-menu-card:hover .katalog-menu-btn-inner {
    background: rgba(255,255,255,0.95);
    color: #8b0000;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.katalog-menu-btn-inner i {
    transition: transform 0.3s ease;
}

.katalog-menu-card:hover .katalog-menu-btn-inner i {
    transform: translateX(5px);
}

/* ========== SOCIAL ICON CENTERING ========== */

.social_icon.modern-social {
    float: none;
}

.social_icon.modern-social ul {
    float: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.social_icon.modern-social ul li {
    float: none;
}

.social_icon.modern-social ul li a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social_icon.modern-social ul li a:hover {
    background: rgba(255,255,255,0.35);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
    .promo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-media {
        justify-content: center;
    }

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

    .right_section_header_top .social_icon.modern-social,
    .right_section_header_top div.social_icon.modern-social {
        display: flex !important;
        justify-content: center;
        float: none;
        width: 100%;
    }

    .header_top.modern-topbar .row {
        flex-direction: column;
    }

    .header_top.modern-topbar .col-md-8,
    .header_top.modern-topbar .col-md-4 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        display: flex;
        justify-content: center;
    }

    .header_top.modern-topbar .col-md-8 .full {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .header_top.modern-topbar .topbar-left {
        float: none;
        text-align: center;
        width: 100%;
    }

    .header_top.modern-topbar .topbar-left .list-inline {
        float: none;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .header_top.modern-topbar .right_section_header_top {
        display: flex;
        justify-content: center;
        float: none;
        width: 100%;
    }

    .header-top-right {
        justify-content: center;
        align-items: center;
        width: 100%;
        flex-direction: column;
        gap: 12px;
    }

    .make_appo {
        float: none;
        text-align: center;
        width: 100%;
    }

    .make_appo .btn.white_btn.modern-cta {
        display: inline-flex;
    }

    .social_icon.modern-social ul li a {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .katalog-menu-grid { gap: 20px; }
    .katalog-menu-card { padding: 45px 50px; }
    .katalog-menu-title { font-size: 2rem; }
}

@media (max-width: 768px) {
    .promo-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .social-media {
        justify-content: center;
    }

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

    .footer-brand p {
        text-align: center;
    }

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

    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a {
        justify-content: center;
    }

    .footer-contact-item {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }

    .right_section_header_top .social_icon.modern-social,
    .right_section_header_top div.social_icon.modern-social {
        display: flex !important;
        justify-content: center;
        float: none;
        width: 100%;
    }

    .header_top.modern-topbar .row {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .header_top.modern-topbar .col-md-8,
    .header_top.modern-topbar .col-md-4 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        display: flex;
        justify-content: center;
    }

    .header_top.modern-topbar .col-md-8 .full {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .header_top.modern-topbar .topbar-left {
        float: none;
        text-align: center;
        width: 100%;
    }

    .header_top.modern-topbar .topbar-left .list-inline {
        float: none;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .header_top.modern-topbar .right_section_header_top {
        display: flex;
        justify-content: center;
        float: none;
        width: 100%;
    }

    .header-top-right {
        justify-content: center;
        align-items: center;
        width: 100%;
        flex-direction: column;
        gap: 12px;
    }

    .make_appo {
        float: none;
        text-align: center;
        width: 100%;
    }

    .make_appo .btn.white_btn.modern-cta {
        display: inline-flex;
    }

    .social_icon.modern-social ul {
        float: none;
        display: flex;
        justify-content: center;
        width: auto;
    }

    .social_icon.modern-social ul li {
        display: block;
        float: none;
        width: auto;
        margin: 0;
    }

    .social_icon.modern-social ul li a {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .katalog-menu-grid { gap: 16px; }
    .katalog-menu-card { padding: 40px 30px; }
    .katalog-menu-title { font-size: 1.7rem; }
    .katalog-menu-subtitle { font-size: 1rem; }
    .katalog-menu-btn-inner { padding: 12px 28px; font-size: 14px; }
}

@media (max-width: 574px) {
    .social_icon.modern-social ul {
        gap: 8px;
        display: flex;
    }

    .social_icon.modern-social ul li {
        display: block;
        width: auto;
        margin: 0;
    }

    .social_icon.modern-social ul li a {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .header_top.modern-topbar .topbar-left .list-inline {
        justify-content: center;
    }

    .header_top.modern-topbar .topbar-left .list-inline li {
        width: 100%;
        text-align: center;
        margin: 0;
        font-size: 12px;
    }

.header-top-right {
        justify-content: center;
        align-items: center;
        width: 100%;
        flex-direction: column;
        gap: 12px;
    }

    .header_top .social-media {
        justify-content: center;
    }

    .make_appo {
        float: none;
        text-align: center;
        width: 100%;
    }

    .make_appo .btn.white_btn.modern-cta {
        display: inline-flex;
    }

    .katalog-menu-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .katalog-menu-card { padding: 35px 24px; }
    .katalog-menu-title { font-size: 1.5rem; }
}