/* Durat Al-A'mal Design System & Styling */

:root {
    --primary: #004d73;
    --primary-dark: #00274d;
    --primary-light: #00B02C;
    --primary-reverse: #ccffff;
    
    --accent-whatsapp: #25D366;
    --accent-whatsapp-dark: #128C7E;
    
    --bg-main: #fcfcfc;
    --bg-white: #ffffff;
    --bg-gray: #f7fafc;
    
    --text-main: #1f2937;
    --text-sec: #4b5563;
    --text-muted: #9ca3af;
    --text-btn: #ffffff;
    
    --border-color: #e5e7eb;
    
    --font-main: 'Tajawal', sans-serif;
    --font-nums: 'Outfit', sans-serif;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 18px;
    
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-content: border-box;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

button {
    font-family: var(--font-main);
    border: none;
    background: none;
    cursor: pointer;
    outline: none;
    transition: var(--transition-fast);
}

input, select, textarea {
    font-family: var(--font-main);
    outline: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.bg-gray {
    background-color: var(--bg-gray);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: #00B02C;
    color: var(--text-btn);
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: var(--shadow-sm);
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.whatsapp-direct-btn {
    background-color: var(--accent-whatsapp);
    color: #ffffff;
}

.whatsapp-direct-btn:hover {
    background-color: var(--accent-whatsapp-dark);
}

/* Store Header Navigation */
.store-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4.5rem;
}

.header-actions-right, .header-actions-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 30%;
}

.header-actions-left {
    justify-content: flex-end;
}

.icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    height: 2.75rem;
    padding: 0 0.75rem;
    border-radius: var(--radius-md);
    color: var(--text-main);
    border: 1px solid transparent;
}

.icon-btn i {
    width: 1.35rem;
    height: 1.35rem;
}

.icon-btn:hover {
    background-color: rgba(0, 0, 0, 0.04);
    color: #00B02C;
}

.hamburger-menu {
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
}

.btn-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-main);
}

.cart-btn {
    position: relative;
    background-color: rgba(0, 77, 115, 0.05);
    color: #00B02C;
    border: 1px solid rgba(0, 77, 115, 0.1);
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: #00B02C;
    color: #ffffff;
    font-family: var(--font-nums);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40%;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 1.75rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-dark);
}

.logo-text .highlight {
    color: #00B02C;
}

/* Side Drawer Menu */
.menu-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.menu-drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.menu-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background-color: var(--bg-white);
    z-index: 201;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-col: column;
    flex-direction: column;
    transition: right var(--transition-normal);
}

.menu-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.drawer-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.close-drawer-btn {
    color: var(--text-sec);
}

.drawer-body {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.drawer-nav {
    list-style: none;
}

.drawer-nav li {
    margin-bottom: 0.5rem;
}

.drawer-nav a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    color: var(--text-sec);
}

.drawer-nav a:hover, .drawer-nav a.active {
    background-color: rgba(0, 77, 115, 0.05);
    color: #00B02C;
    font-weight: 700;
}

.drawer-footer-info {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.drawer-footer-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
}

/* Hero Section */
.hero-slider-section {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.hero-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    max-height: 480px;
}

.hero-overlay-content {
    position: absolute;
    bottom: 20px;
    right: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-lg);
    max-width: 500px;
    z-index: 10;
}

.hero-overlay-content h2 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.hero-overlay-content p {
    color: var(--text-sec);
    font-size: 0.95rem;
}

/* Category Tabs (Desktop filters) */
.category-tabs-section {
    margin-bottom: 2.5rem;
}

.tabs-scroll-container {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.75rem;
    scrollbar-width: thin;
}

.tab-btn {
    white-space: nowrap;
    padding: 0.65rem 1.25rem;
    border-radius: var(--radius-xl);
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    font-weight: 700;
    color: var(--text-sec);
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
}

.tab-btn:hover, .tab-btn.active {
    background-color: #00B02C;
    border-color: #00B02C;
    color: var(--text-btn);
}

/* Store Content (Categories sections) */
.category-section {
    margin-bottom: 3.5rem;
}

.category-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    border-right: 4px solid #00B02C;
    padding-right: 0.75rem;
}

.category-section-header h2 {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--primary-dark);
}

.expand-cat-btn {
    font-size: 0.9rem;
    font-weight: 700;
    color: #00B02C;
}

.expand-cat-btn:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* Product Card */
.product-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.product-card-image {
    position: relative;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    background-color: #f7fafc;
    overflow: hidden;
}

.product-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #f87e7e;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.product-card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-category {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.product-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    height: 2.8em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.rating-val {
    font-family: var(--font-nums);
    font-size: 0.85rem;
    color: var(--text-sec);
    font-weight: 600;
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
    padding-top: 0.75rem;
}

.product-price {
    display: flex;
    flex-direction: column;
}

.price-current {
    font-family: var(--font-nums);
    font-size: 1.15rem;
    font-weight: 700;
    color: #00B02C;
}

.price-old {
    font-family: var(--font-nums);
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.order-btn {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.85rem;
    background-color: var(--bg-main);
    color: #00B02C;
    border: 1px solid var(--primary);
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.85rem;
}

.product-card:hover .order-btn {
    background-color: #00B02C;
    color: #ffffff;
}

.order-btn i {
    width: 1rem;
    height: 1rem;
}

/* Testimonials section */
.testimonials-section {
    padding: 4rem 0;
    margin-top: 2rem;
}

.section-title {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-top: -0.75rem;
    margin-bottom: 2rem;
}

.testimonial-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 1px solid var(--border-color);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-light);
}

.testimonial-header h4 {
    font-size: 1rem;
    color: var(--text-main);
}

.testimonial-card .comment {
    font-size: 0.95rem;
    color: var(--text-sec);
}

.quote-icon {
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 3rem;
    color: rgba(0, 77, 115, 0.08);
}

.swiper-pagination-bullet-active {
    background: var(--primary) !important;
}

/* Features Grid */
.features-section {
    padding: 4rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.5rem;
    height: 4.5rem;
    margin: 0 auto 1.25rem;
    background-color: rgba(0, 77, 115, 0.05);
    color: #00B02C;
    border-radius: 50%;
}

.feature-icon i {
    width: 2.25rem;
    height: 2.25rem;
}

.feature-card h3 {
    font-family: var(--font-nums);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.feature-card p {
    color: var(--text-sec);
    font-size: 0.9rem;
}

/* Modals General Layout */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 300;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 301;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.modal.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.close-modal-btn {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    color: var(--text-sec);
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal-btn:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

/* Product Details Modal Grid */
.modal-content-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 768px) {
    .modal-content-grid {
        grid-template-columns: 45% 55%;
    }
}

.modal-product-image {
    background-color: #f7fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-product-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
}

.modal-product-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.modal-category {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
}

.modal-title {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.modal-price {
    margin: 1rem 0;
}

.modal-price .price-current {
    font-size: 1.5rem;
}

.modal-price .price-old {
    font-size: 1rem;
}

.modal-desc-body {
    margin-bottom: 1.5rem;
}

.modal-desc-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.35rem;
}

.modal-desc-body p {
    font-size: 0.95rem;
    color: var(--text-sec);
}

/* Modal Tabs */
.modal-tabs {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    margin-bottom: 1.5rem;
}

.modal-tab-headers {
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.modal-tab-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
}

.modal-tab-btn.active {
    color: #00B02C;
    border-bottom: 2px solid var(--primary);
}

.tab-pane {
    display: none;
    font-size: 0.9rem;
    color: var(--text-sec);
    max-height: 150px;
    overflow-y: auto;
}

.tab-pane.active {
    display: block;
}

.whatsapp-order-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--accent-whatsapp);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.whatsapp-order-btn:hover {
    background-color: var(--accent-whatsapp-dark);
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 99;
}

.whatsapp-float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--accent-whatsapp);
    color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    position: relative;
    transition: transform var(--transition-fast);
}

.whatsapp-float-btn i {
    width: 1.85rem;
    height: 1.85rem;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1);
}

.whatsapp-float-btn .pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--accent-whatsapp);
    opacity: 0.6;
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* Search Modal */
.search-modal {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-100%);
    width: 100%;
    max-width: 600px;
    background-color: var(--bg-white);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 301;
    transition: transform var(--transition-normal);
    max-height: 80vh;
    display: flex;
    flex-direction: column;
}

.search-modal.active {
    transform: translateX(-50%) translateY(0);
}

.search-modal-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search-modal-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
}

.search-modal-body {
    padding: 1.5rem;
    overflow-y: auto;
}

.search-input-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
}

.search-input-wrapper input {
    width: 100%;
    padding: 0.85rem 2.75rem 0.85rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background-color: var(--bg-gray);
    font-size: 1rem;
}

.search-icon-inside {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.search-results {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    cursor: pointer;
}

.search-result-item:hover {
    background-color: rgba(0, 77, 115, 0.03);
    border-color: var(--primary-light);
}

.search-item-img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
}

.search-item-info {
    flex: 1;
}

.search-item-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
}

.search-item-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.search-empty-state {
    text-align: center;
    padding: 2rem 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Salla Cart Modal */
.cart-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 450px;
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 301;
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.cart-modal.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.cart-modal-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-modal-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
}

.cart-modal-body {
    padding: 2.5rem 1.5rem;
}

.empty-cart-state {
    text-align: center;
}

.empty-cart-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.empty-cart-msg {
    color: var(--text-sec);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

/* Footer Section styling */
.store-footer {
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 2rem;
    margin-top: 5rem;
}

.footer-top {
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
}

.footer-social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social-icon-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    font-weight: 700;
    font-size: 0.95rem;
}

.social-icon-btn.tiktok:hover {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
}

.social-icon-btn.whatsapp {
    background-color: rgba(37, 211, 102, 0.05);
    color: var(--accent-whatsapp-dark);
    border-color: rgba(37, 211, 102, 0.2);
}

.social-icon-btn.whatsapp:hover {
    background-color: var(--accent-whatsapp);
    color: #ffffff;
    border-color: var(--accent-whatsapp);
}

.footer-middle {
    padding: 3rem 0;
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .footer-middle {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1.25rem;
}

.footer-desc {
    color: var(--text-sec);
    margin-top: 1rem;
    font-size: 0.95rem;
}

.footer-contacts ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contacts li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-sec);
}

.footer-contacts li a {
    color: #00B02C;
    font-weight: 600;
}

.footer-contacts li i {
    width: 1.15rem;
    height: 1.15rem;
    color: #00B02C;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.badge-img {
    height: 28px;
    width: auto;
    object-fit: contain;
    border: 1px solid var(--border-color);
    padding: 2px;
    border-radius: 50%;
    background-color: var(--bg-white);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    text-align: center;
}

.copyright-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Logo Styling */
.logo-img {
    height: 4.8rem;
    width: 4.8rem;
    object-fit: cover;
    border-radius: 50% !important; /* Crop black corners */
    border: 2px solid var(--primary-light);
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-fast);
    margin-top: 0.5rem; /* Allow to hang slightly lower */
}

.logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-link:hover .logo-img {
    transform: scale(1.08) rotate(5deg);
}

.footer-logo-img {
    height: 5.5rem;
    width: 5.5rem;
    border-radius: 50% !important;
    border: 3px solid var(--primary-light);
    background-color: var(--bg-white);
    box-shadow: var(--shadow-lg);
    margin-bottom: 1rem;
}

/* Premium Hero Banner Styling */
.hero-banner-section {
    position: relative;
    background: linear-gradient(135deg, #021a30 0%, #004d73 60%, #008722 100%);
    color: #ffffff;
    padding: 5rem 0;
    overflow: hidden;
    margin-bottom: 3rem;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.hero-bg-shapes .shape-1 {
    top: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background-color: #00B02C;
}

.hero-bg-shapes .shape-2 {
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background-color: #00274d;
}

.hero-container-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-container-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: right;
    }
}

.hero-text-content {
    flex: 1;
    max-width: 650px;
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-text-content {
        text-align: right;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(0, 176, 44, 0.2);
    color: #00B02C;
    border: 1px solid rgba(0, 176, 44, 0.4);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
}

.hero-description {
    font-size: 1.1rem;
    color: #e5e7eb;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-platforms-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    justify-content: center;
}

@media (min-width: 1024px) {
    .hero-platforms-list {
        justify-content: flex-start;
    }
}

.platform-tag {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 700;
}

.hero-cta-btn {
    background-color: #00B02C;
    color: #ffffff;
    padding: 1rem 2rem;
    font-size: 1.05rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 15px rgba(0, 176, 44, 0.4);
}

.hero-cta-btn:hover {
    background-color: #008722;
    transform: translateY(-3px);
}

.hero-visual-card {
    width: 100%;
    max-width: 320px;
    perspective: 1000px;
}

.visual-card-inner {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.visual-logo {
    width: 6.5rem;
    height: 6.5rem;
    border-radius: 50% !important;
    border: 3px solid #00B02C;
    background-color: #ffffff;
    box-shadow: var(--shadow-lg);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(3deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.visual-card-inner h3 {
    font-size: 1.35rem;
    font-weight: 900;
    color: #ffffff;
    margin-top: 0.5rem;
}

.visual-card-inner p {
    font-size: 0.9rem;
    color: #d1d5db;
}

.visual-badge {
    display: inline-block;
    background-color: #00B02C;
    color: #ffffff;
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
}
