/* Ultra Modern Pharmacy Website - Complete CSS */
:root {
    /* Brand Colors - Corrected */
    --primary: #0e2954;
    --secondary: #6ac8c6;
    --brand-primary: #0e2954;
    --brand-secondary: #1e3045;
    --accent: #6ac8c6;
    --success: #10B981;
    --warning: #1b5a7a;
    --error: #EF4444;
    --info: #3B82F6;
	 overflow-x: hidden;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    /* Typography */
    --font-primary: 'Overpass', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Overpass', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Shadows */
    --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-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html, body {
    max-width: 100%;
    width: 100%;
    overflow-x: hidden !important;
}

body.home {
    overflow-x: hidden !important;
}

html {
    overflow-x: hidden !important;
}


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

body {
  font-family: 'Overpass', sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
	width: 100%;
    max-width: 100vw;
    overflow-x: hidden !important;
    position: relative;
}
/*
.site-content,
main,
section,
footer {
    max-width: 100vw !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
    width: 100% !important;
}
*/
.container {
    
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
	    width: 100%;
    box-sizing: border-box;
    max-width: 1200px;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -10px, 0);
    }
    70% {
        transform: translate3d(0, -5px, 0);
    }
    90% {
        transform: translate3d(0, -2px, 0);
    }
}

@keyframes float {
    0%, 100% { 
        transform: translateZ(0) translateY(0px) rotate(0deg) scale(1); 
        opacity: 0.8;
    }
    25% { 
        transform: translateZ(0) translateY(-15px) rotate(90deg) scale(1.05); 
        opacity: 1;
    }
    50% { 
        transform: translateZ(0) translateY(-25px) rotate(180deg) scale(1.1); 
        opacity: 0.9;
    }
    75% { 
        transform: translateZ(0) translateY(-15px) rotate(270deg) scale(1.05); 
        opacity: 1;
    }
}

/* Header Styles */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(14, 41, 84, 0.1);
    transition: all 0.3s ease;
}

#main-header.sticky {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(14, 41, 84, 0.1);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}


/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.logo-sub {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.logo:hover .logo-main {
    color: var(--secondary);
}

/* Navigation Menu */
.nav-menu-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    color: var(--gray-800);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-menu li a:hover {
    color: var(--primary);
}

/* Sub Menu Styles */
.nav-menu .menu-item-has-children {
    position: relative;
}

.nav-menu .menu-item-has-children > a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-arrow {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.nav-menu .menu-item-has-children:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 8px 0;
    min-width: 200px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(106, 200, 198, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 99999;
    pointer-events: auto;
}

.nav-menu .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-menu .sub-menu li {
    display: block;
    margin: 0;
}

.nav-menu .sub-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--brand-primary);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 2px 8px;
    pointer-events: auto;
    cursor: pointer;
}

.nav-menu .sub-menu li a:hover {
    background: linear-gradient(135deg, rgba(106, 200, 198, 0.1) 0%, rgba(106, 200, 198, 0.05) 100%);
    color: var(--brand-secondary);
    transform: translateX(5px);
    pointer-events: auto;
}

/* Ensure dropdown menu is always clickable */
.nav-menu .menu-item-has-children .sub-menu {
    pointer-events: auto !important;
}

.nav-menu .menu-item-has-children .sub-menu li a {
    pointer-events: auto !important;
    cursor: pointer !important;
}

/* Fix any potential z-index issues */
.nav-menu .menu-item-has-children {
    position: relative;
    z-index: 99999;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-menu li a:hover::after {
    width: 100%;
}

/* Icons Section */
.icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icons ul {
    display: flex;
    list-style: none;
    gap: 16px;
    margin: 0;
    padding: 0;
}

.icons li {
    position: relative;
}

.icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--gray-700);
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
}

.icons a:hover {
    background: var(--gray-100);
    color: var(--primary);
    transform: scale(1.1);
}

/* Wishlist Icon */
.icons a i {
    font-size: 20px;
}

.wishlist-counter {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent);
    color: white;
    font-size: 12px;
    font-weight: 600;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Search Icon */
.search-icon {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: var(--gray-700);
}

.search-icon:hover {
    background: var(--gray-100);
    color: var(--primary);
    transform: scale(1.1);
}

/* Cart Icon */
.cart-icon-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--gray-700);
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cart-icon-container:hover {
    background: var(--gray-100);
    color: var(--primary);
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent);
    color: white;
    font-size: 12px;
    font-weight: 600;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Search Overlay - Ultra Modern Design */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 41, 84, 0.95) 0%, rgba(106, 200, 198, 0.95) 100%);
    backdrop-filter: blur(20px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.search-overlay.active {
    display: flex;
    opacity: 1;
}

.search-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.search-overlay .close {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    transition: all 0.3s ease;
    z-index: 10001;
}

.search-overlay .close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1) rotate(90deg);
}

.search-overlay form {
    width: 90%;
    max-width: 800px;
    position: relative;
    z-index: 10001;
}

.search-overlay .search-title {
    text-align: center;
    color: white;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 0.75rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.2s;
}

.search-overlay.active .search-title {
    opacity: 1;
    transform: translateY(0);
}

.search-overlay .search-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.4s;
}

.search-overlay.active .search-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.search-overlay input {
    width: 100%;
    padding: 30px 80px 30px 30px;
    font-size: 24px;
    border: none;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    outline: none;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.search-overlay.active input {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease 0.6s;
}

.search-overlay input:focus {
    background: white;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    transform: scale(1.02);
}

.search-overlay input::placeholder {
    color: var(--gray-500);
    font-weight: 400;
}

.search-overlay button {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    transform: translateY(-50%) translateY(30px);
}

.search-overlay.active button {
    opacity: 1;
    transform: translateY(-50%) translateY(0);
    transition: all 0.6s ease 0.8s;
}

.search-overlay button:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(14, 41, 84, 0.4);
}



/* Body scroll lock when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Footer Styles - Ultra Modern Design */
.site-footer {
    position: relative;
    background: linear-gradient(135deg, var(--accent) 0%, #1c2f48 100%);
    color: white;
    overflow: hidden;
    margin-top: 0rem;
    margin-bottom: 0;
}

body {
    padding-bottom: 0;
}

.woocommerce-cart .site-content {
    margin-top: 20px !important;
}

.woocommerce-cart .site-content h1{
    font-size: 25px !important;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
}



.woocommerce-checkout h1.post-title {
display: none !important;
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Removed small blue dots */
    background: none;
    pointer-events: none;
}

/* Modern Professional Pills Container */
.modern-pills-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

/* Modern Pills Container for Mahnites Services */
.modern-pills-container-mahnites {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding: 1.5rem 0 1rem;
    position: relative;
    z-index: 2;
}

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

.footer-column h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

/* Company Info Column */
.footer-company {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo .logo-img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo .logo-main {
    font-size: 28px;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.footer-logo .logo-sub {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: white;
    transform: translateX(5px);
}

.contact-item svg {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.contact-item:hover svg {
    color: white;
    transform: scale(1.1);
}

/* Footer Links */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--secondary);
}

.footer-links a:hover {
    color: white;
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

/* Social Media & Badges */
.footer-social-badges {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.security-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 12px 20px;
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.badge svg {
    color: var(--secondary);
}


/* Footer Commitment & Social – direkt poshtë logos */
.footer-company .footer-commitment {
    text-align: left;
    padding-top: 0px;
    margin-top: 0px;
}

.footer-commitment-text {
    color: white;
    font-size: 13px !important;
    line-height: 1.5;
    margin: 0 0 1rem;
    text-align: left;
}

.footer-company .footer-commitment .footer-commitment-text {
    max-width: 100%;
}

.footer-commitment-social {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-company .footer-commitment .footer-commitment-social {
    justify-content: flex-start;
}

.footer-commitment-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: white;
    text-decoration: none;
    font-size: 22px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-commitment-social a:hover {
    opacity: 0.9;
    transform: translateY(-3px);
    color: white;
}

/* Footer Bottom */
.footer-bottom {
    padding: 5px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    position: relative;
    z-index: 2;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(14, 41, 84, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    transform: translateY(100px);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(14, 41, 84, 0.4);
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 60px 0 40px;
    }
	.slide-content {
    margin-top: 40%!important;
}
	.footer-column h4::after {
		right:100%;
		margin:auto;
	}
    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .newsletter-form {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 0 30px;
    }
	.shop-account-cta-content {
		align-items: baseline;
	}
	.premium-header {
        margin-left: 3%;
    }
	.premium-title::after {
		left: 14%;
	}
	.premium-slide {
        padding-left: 0px;
    }
	.premium-slider-wrapper {
        padding-left: 10px;
    }
	.newsletter-form {
    width: 100%;
}
	.section-subtitle {
		font-size: 18px !important;
	}
	.hero-description {
        font-size: 18px !important;
    }
	.application-section {
    padding-left: 10px;
    padding-right: 10px;
}
	.form-section-title {
		font-size: 17px !important;
	}
	.form-section .section-title {
				font-size: 17px !important;
	}
	.contact-method {
		align-items: baseline;
	}
	.partner-logo {
		margin-left:0px;
	}
    .footer-column h4 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .footer-logo {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-logo .logo-img {
        height: 50px;
    }
    
    .footer-logo .logo-main {
        font-size: 24px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 30px;
        padding: 30px 0 20px;
    }
    
    .footer-column h4 {
        font-size: 16px;
    }
    
    .footer-description {
        font-size: 14px;
    }
    
    .contact-item {
        font-size: 14px;
    }
    
    .footer-commitment {
        padding: 1.5rem 0;
    }
    
    .footer-commitment-text {
        font-size: 14px;
    }
    
    .footer-commitment-social a {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .social-icons a {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .back-to-top {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}

/* Careers Page Styles */
.careers-page {
    padding-top: 0px;
}

.careers-hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    overflow: hidden;
    margin-top: 0;
    padding-top: 30px;
    padding-bottom: 0px;
}

.careers-hero .hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.careers-hero .hero-pattern {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.careers-hero .floating-pills {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.careers-hero .hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: left;
    width: 100%;
    margin: 0;
}

.careers-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.careers-hero .hero-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 12px 0;
}

.careers-hero .title-highlight {
    background: linear-gradient(135deg, #fff 0%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 660px) {
    .careers-hero {
        padding-top: 15px;
        padding-bottom: 0px;
    }
	#searchModal .modal-header {
		padding: 0.5rem !important;
	}
	#searchModal .modal-body {
		padding: 0.5rem !important
	}
	#searchModal .modal-content {
		padding: 1px;
	}
	#searchModal .search-submit {
		padding: 0px !important;
	}
	#searchModal .search-field {
    border: solid 1px;
    padding: 1rem 1.5rem !important;
    font-size: 1rem !important;
    background: #ffffff !important;
    width: 100%;
    margin-bottom: 8px;
}
	#searchModal .input-group {
    display: contents;
}
}

.careers-hero .hero-description {
    font-size: clamp(16px, 1.5vw, 20px);
    opacity: 0.9;
    line-height: 1.7;
    color: white;
    margin-bottom: 30px;
}

.careers-hero .hero-description p {
    margin-bottom: 1rem;
    color: white;
}

.careers-hero .hero-description p:last-child {
    margin-bottom: 0;
}

.careers-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.careers-hero .stat-item {
    text-align: center;
}

.careers-hero .stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.careers-hero .stat-label {
    font-size: 14px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Career Advantages Section - Completely Redesigned */
.career-advantages-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.career-advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
    z-index: 1;
}

.career-advantages-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.career-advantages-header {
    text-align: left;
    margin-bottom: 1.5rem;
}

.career-advantages-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 5px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.career-advantages-subtitle {
    font-size: 1.25rem;
    color: #1f2937;
    max-width: 100%;
    margin: 0 auto;
    line-height: 1.6;
    margin-left: 0px;
}

.career-advantages-grid {
    margin-top: 1rem;
}

/* Ensure equal height for all cards in the same row */
.row .col-md-3 {
    display: flex;
    margin-bottom: 2rem;
}

.row .col-md-3 .career-advantage-item {
    width: 100%;
}

.career-advantage-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 35px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: flex-start;
}

.career-advantage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.career-advantage-item:hover::before {
    transform: scaleX(1);
}

.career-advantage-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.career-advantage-icon-wrapper {
    margin-bottom: 24px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.career-advantage-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #022d5f 0%, #063e7f 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.career-advantage-item:hover .career-advantage-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
}

.career-advantage-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex-grow: 1;
}

.career-advantage-title {
    font-size: 19px !important;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    line-height: 1.3;
    text-align: left;
}

.career-advantage-description {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    text-align: left;
    max-width: 100%;
}

/* Application Form Section */
.application-section {
    padding: 2rem 0;
    background: var(--gray-50);
}

.application-section .section-header {
    text-align: left;
    margin-bottom: 1.5rem;
}

.application-section .section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.application-section .section-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
    margin-left: 0px;
}

.form-container {
    max-width: 100%;
    margin: 0 auto;
    margin-left: 0px;
}

.career-form {
    background: white;
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 20px 80px rgba(14, 41, 84, 0.1);
    border: 1px solid var(--gray-200);
}

.form-section {
    margin-bottom: 11px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--gray-200);
}

.form-section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-200);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 20px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14, 41, 84, 0.1);
}

/* File Upload */
.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-display {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border: 2px dashed var(--gray-300);
    border-radius: 12px;
    background: var(--gray-50);
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-upload-display:hover {
    border-color: var(--primary);
    background: rgba(14, 41, 84, 0.05);
}

.file-upload-display svg {
    color: var(--gray-500);
}

.file-text {
    color: var(--gray-600);
    font-weight: 500;
}

/* Checkbox Group */
.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-text {
    flex: 1;
    white-space: normal;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
}

/* Submit Button */
.form-submit {
    text-align: left;
    margin-top: 10px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(14, 41, 84, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(14, 41, 84, 0.4);
}

/* Openings Section */
.openings-section {
    padding: 2rem 0;
    background: white;
}

.openings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.opening-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(14, 41, 84, 0.1);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.opening-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(14, 41, 84, 0.15);
}

.opening-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.opening-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
}

.opening-type {
    background: var(--secondary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.opening-description {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
}

.opening-details {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.detail-item {
    font-size: 14px;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 4px;
}


.partners-hero {
    position: relative;
    padding-top: 30px;
    padding-bottom: 0px;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    color: white;
    overflow: hidden;
}

.partners-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.partners-hero .hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.partners-hero .floating-pills {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="10" y="10" width="8" height="4" rx="2" fill="rgba(255,255,255,0.1)" transform="rotate(45 14 12)"/><rect x="70" y="30" width="6" height="3" rx="1.5" fill="rgba(255,255,255,0.1)" transform="rotate(-30 73 31.5)"/><rect x="30" y="70" width="10" height="5" rx="2.5" fill="rgba(255,255,255,0.1)" transform="rotate(60 35 72.5)"/></svg>');
    animation: floatParticle 25s linear infinite;
    pointer-events: none;
}

.partners-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
}

.partners-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 8px 20px;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 600;
}

.partners-hero .hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 12px 0;
}

.partners-hero .hero-title .title-line-1 {
    display: block;
    color: white;
}

.partners-hero .hero-title .title-line-2 {
    display: block;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partners-hero .hero-description {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: max-content;
    margin-left: 0px;
    margin-right: auto;
}

/* Ensure description inside partners-showcase has bottom spacing */
.partners-showcase .hero-description {
    margin-bottom: 20px;
    margin-left: 0px;
}

.partners-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.partners-hero .stat-item {
    text-align: center;
}

.partners-hero .stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.partners-hero .stat-label {
    font-size: 14px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Partners Showcase */
.partners-showcase {
    padding: 1rem 0;
    background: white;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.partner-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(14, 41, 84, 0.1);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    text-align: left;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(14, 41, 84, 0.15);
}
.sidebar-toggle-btn {
    padding: 12px 20px 12px 16px !important;
}
/* Partners Placeholder */
.partners-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: 1.5rem 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    border: 2px dashed rgba(14, 41, 84, 0.2);
}

.partners-placeholder .placeholder-content {
    max-width: 500px;
    margin: 0 auto;
}

.partners-placeholder .placeholder-content svg {
    color: rgba(14, 41, 84, 0.4);
    margin-bottom: 30px;
}

.partners-placeholder .placeholder-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 15px;
}

.partners-placeholder .placeholder-content p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 30px;
}

.partners-placeholder .admin-link {
    margin-top: 20px;
}

.partners-placeholder .admin-link .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 41, 84, 0.2);
}

.partners-placeholder .admin-link .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 41, 84, 0.3);
    color: white;
    text-decoration: none;
}

/* Form Messages */
.form-message {
    padding: 15px 20px;
    border-radius: 12px;
    margin-top: 20px;
    font-weight: 500;
    text-align: center;
}

.form-message.success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: 1px solid #059669;
}

.form-message.error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border: 1px solid #dc2626;
}

/* No Services Styling */
.no-services {
    grid-column: 1 / -1;
    text-align: center;
    padding: 1.5rem 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    border: 2px dashed rgba(14, 41, 84, 0.2);
}

.no-services-icon {
    margin-bottom: 30px;
}

.no-services-icon svg {
    color: rgba(14, 41, 84, 0.4);
}

.no-services h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 15px;
}

.no-services p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 30px;
}

.no-services .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 41, 84, 0.2);
}

.no-services .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 41, 84, 0.3);
    color: white;
    text-decoration: none;
}

/* Related Services Section */
.related-services-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.related-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 1rem;
}

.related-service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(14, 41, 84, 0.1);
    border: 1px solid rgba(14, 41, 84, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.related-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.related-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(14, 41, 84, 0.15);
}

.related-service-card:hover::before {
    transform: scaleX(1);
}

.related-service-card .service-icon {
    margin-bottom: 30px;
}

.related-service-card .service-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 15px;
    line-height: 1.3;
}

.related-service-card .service-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 25px;
}

.related-service-card .service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.related-service-card .service-link:hover {
    color: var(--brand-primary);
    gap: 12px;
}

.related-service-card .link-icon {
    transition: transform 0.3s ease;
}

.related-service-card .service-link:hover .link-icon {
    transform: translateX(4px);
}

.partner-logo {
    margin-bottom: 20px;
}

.partner-logo img {
    max-width: 120px;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo img {
    filter: grayscale(0%);
}

.logo-placeholder {
    width: 80px;
    height: 80px;
    background: var(--gray-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    color: var(--gray-400);
}

.partner-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.partner-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.partner-title a:hover {
    color: var(--primary);
}

.partner-description {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
}

.partner-link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.partner-link:hover {
    color: white;
    gap: 12px;
    background: #063e7f;
}

/* Partnership Benefits */
.partnership-benefits {
    padding: 2rem 0;
    background: var(--gray-50);
}

/* Become Partner Section */
.become-partner {
    padding: 2rem 0;
    background: white;
}

.become-partner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.become-partner-title {
    font-size: 32px!important;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 20px;
}


.become-partner-description {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.become-partner-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--gray-700);
}

.feature-item svg {
    color: var(--secondary);
    flex-shrink: 0;
}

.partnership-form {
    background: var(--gray-50);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--gray-200);
}

.partnership-form h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 30px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .career-advantages-title {
        font-size: 3rem;
    }
}

@media (max-width: 1024px) {
    .career-advantages-title {
        font-size: 2.5rem;
    }
    
    .career-advantage-item {
        padding: 32px 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .become-partner-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .career-advantages-section {
        padding: 1.5rem 0;
    }
    
    .career-advantages-title {
        font-size: 2.25rem;
    }
    
    .career-advantages-subtitle {
        font-size: 1.125rem;
    }
    
    .career-advantages-grid {
        margin-top: 1rem;
    }
    
    .career-advantage-item {
        padding: 28px 20px;
    }
    
    .career-advantage-icon {
        width: 56px;
        height: 56px;
    }
    
    .career-advantage-title {
        font-size: 1.25rem;
    }
    
    .careers-hero .hero-title,
    .partners-hero .hero-title {
        font-size: 48px;
    }
    
    .careers-hero .hero-stats,
    .partners-hero .hero-stats {
        gap: 40px;
    }
    
    .career-form {
        padding: 40px 30px;
    }
    
    .checkbox-label {
        flex-wrap: wrap;
    }
    
    .privacy-link-wrapper {
        display: block;
        width: 100%;
        flex-basis: 100%;
        margin-top: 6px;
        white-space: nowrap;
    }
    
    .checkbox-label a {
        display: inline;
        white-space: nowrap;
    }
    
    .openings-grid,
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .related-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .related-service-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {

    
    .career-advantages-title {
        font-size: 1.875rem;
    }
    
    .career-advantages-subtitle {
        font-size: 1rem;
    }
    
    .career-advantage-item {
        padding: 24px 16px;
    }
    
    .career-advantage-icon {
        width: 48px;
        height: 48px;
    }
    
    .career-advantage-title {
        font-size: 1.125rem;
    }
    
    .careers-hero .hero-stats,
    .partners-hero .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .career-form {
        padding: 30px 20px;
    }
    
    .partnership-form {
        padding: 30px 20px;
    }
    
    .checkbox-label {
        flex-wrap: wrap;
    }
    
    .privacy-link-wrapper {
        display: block;
        width: 100%;
        flex-basis: 100%;
        margin-top: 6px;
        white-space: nowrap;
    }
    
    .checkbox-label a {
    	display: contents;
        white-space: nowrap;
        font-size: 15px !important;
    }
}

/* Search Results Add to Cart Button Styles */
.search-result .single_add_to_cart_button {
    background: #022d5f; /* Fallback for older browsers */
    background: linear-gradient(135deg, #022d5f 0%, #063e7f 100%);
    color: white;
    border: none;
    border-radius: 15px;
    padding: 15px 30px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(27, 90, 122, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-result .single_add_to_cart_button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(27, 90, 122, 0.4);
    color: white;
}

/* Search Results and Shop Pagination Styles */
.shop-pagination,
.woocommerce-pagination {
    display: flex;
    justify-content: center;
    margin-top: 0.75rem;
    padding: 20px 0;
}

.shop-pagination .page-numbers,
.woocommerce-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    margin: 0 6px;
    border: 1px solid rgba(6, 62, 127, 0.2);
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(6, 62, 127, 0.3);
    min-width: 44px;
    text-align: center;
}



.shop-pagination .current,
.woocommerce-pagination .current {
    background: #53a9b0!important;
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
}

.input-separator {
	display:none;
}

#min_price, #max_price {
	    padding: 8px 12px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
}

.shop-pagination .current, .woocommerce-pagination li .page-numbers {
	    background: #063e7f;
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
}

.shop-pagination .prev,
.shop-pagination .next,
.woocommerce-pagination .prev,
.woocommerce-pagination .next {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    font-weight: 600;
}

.shop-pagination .prev:hover,
.shop-pagination .next:hover,
.woocommerce-pagination .prev:hover,
.woocommerce-pagination .next:hover {
    background: linear-gradient(135deg, #022d5f 0%, #063e7f 100%);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4);
}

/* Responsive pagination */
@media (max-width: 768px) {
    .shop-pagination,
    .woocommerce-pagination {
        margin-top: 30px;
        padding: 15px 0;
    }
    
    .shop-pagination .page-numbers,
    .woocommerce-pagination .page-numbers {
        padding: 10px 12px;
        margin: 0 3px;
        font-size: 14px;
        min-width: 40px;
    }
    
    .shop-pagination .prev,
    .shop-pagination .next,
    .woocommerce-pagination .prev,
    .woocommerce-pagination .next {
        padding: 10px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .shop-pagination .page-numbers,
    .woocommerce-pagination .page-numbers {
        padding: 8px 10px;
        margin: 0 2px;
        font-size: 13px;
        min-width: 36px;
    }
    
    .shop-pagination .prev,
    .shop-pagination .next,
    .woocommerce-pagination .prev,
    .woocommerce-pagination .next {
        padding: 8px 12px;
        font-size: 13px;
    }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    z-index: 9999;
    transition: left 0.3s ease;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-content {
    padding: 2rem 20px 20px;
    height: 100%;
    overflow-y: auto;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu li {
    margin-bottom: 20px;
}

.mobile-nav-menu li a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    padding: 15px 0;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mobile-nav-menu li a:hover {
    color: var(--secondary);
    padding-left: 20px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    width: 24px;
    height: 18px;
    justify-content: space-between;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    /* All text elements align left */
    body, p, h1, h2, h3, h4, h5, h6, div, span, a, li, td, th, label, input, textarea, select, button {
        text-align: left !important;
    }
    
    .nav-menu-wrapper {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    /* All text elements align left - OVERRIDE ALL CENTER ALIGNMENTS */
    * {
        text-align: left !important;
    }
    
    body, p, h1, h2, h3, h4, h5, h6, div, span, a, li, td, th, label, input, textarea, select, button, section, article, header, footer, nav, ul, ol {
        text-align: left !important;
    }
    
    /* Override all flex center alignments */
    [class*="center"], [class*="Center"], [class*="CENTER"] {
        text-align: left !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
    }
    
    .navbar {
        padding: 12px 0;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .logo-main {
        font-size: 20px;
    }
    
    .logo-sub {
        font-size: 10px;
    }
    
    .icons ul {
        gap: 12px;
        justify-content: flex-start !important;
    }
    
    .icons a {
        width: 36px;
        height: 36px;
    }
    
    .icons a i {
        font-size: 18px;
    }
    
    /* Override all section headers */
    .section-header, .section-header-modern, .services-header {
        text-align: left !important;
    }
    
    /* Override all feature cards */
    .feature-card, .feature-card-modern {
        text-align: left !important;
    }
    
    /* Override footer */
    .footer-content, .footer-column, .footer-social, .footer-bottom {
        text-align: left !important;
        justify-content: flex-start !important;
    }
    
    /* Override newsletter */
    .newsletter-content {
        text-align: left !important;
        justify-content: flex-start !important;
    }
    
    /* Override contact methods */
    .contact-method, .method-info {
        text-align: left !important;
    }
    
    .ufarm-header .navbar-collapse.show .nav-link:nth-child(1) {
        transition-delay: 0.1s !important;
        color: white !important;
    }
}

@media (max-width: 480px) {
    .logo-text {
        display: none;
    }
    
    .icons ul {
        gap: 8px;
    }
    
    .icons a {
        width: 32px;
        height: 32px;
    }
    
    .wishlist-counter,
    .cart-count {
        width: 16px;
        height: 16px;
        font-size: 10px;
        top: -6px;
        right: -6px;
    }
}

.search-icon:hover {
    background: var(--gray-100);
    color: var(--primary);
    transform: scale(1.1);
}

.cart-icon-container {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent);
    color: white;
    font-size: 12px;
    font-weight: 600;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.search-overlay.active {
    display: flex;
}

.search-overlay .close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--gray-700);
}

.search-overlay form {
    width: 90%;
    max-width: 600px;
    position: relative;
}

.search-overlay input {
    width: 100%;
    padding: 20px 60px 20px 20px;
    font-size: 18px;
    border: none;
    border-radius: 50px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.search-overlay button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
}

/* Site Content */
.site-content {
    margin-top: 0px;
    position: relative;
}



.nav-link:focus-visible {
    outline: 0;
    box-shadow: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 0px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
}

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

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

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

.footer-column a:hover {
    color: white;
}

.footer-social ul {
    display: flex;
    gap: 16px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-slow);
}

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

.btn-primary {
    background: linear-gradient(135deg, #022d5f 0%, #063e7f 100%);
    color: white;
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(27, 90, 122, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(27, 90, 122, 0.4);
    color: white;
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    color: #1b5a7a;
    border: 2px solid #1b5a7a;
}

.btn-outline:hover {
    background: linear-gradient(135deg, #022d5f 0%, #063e7f 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(27, 90, 122, 0.4);
    border: none;
}

/* UNIFIED BUTTON STYLES - ALL BUTTONS USE THESE */
.btn-base {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(27, 90, 122, 0.2);
}

.btn-primary-unified {
    background: linear-gradient(135deg, #022d5f 0%, #063e7f 100%);
    color: white;
    border: 2px solid transparent;
}

.btn-primary-unified:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(27, 90, 122, 0.4);
    color: white;
    text-decoration: none;
}

.btn-outline-unified {
    background: transparent;
    color: #1b5a7a;
    border: 2px solid #1b5a7a;
}

.btn-outline-unified:hover {
    background: linear-gradient(135deg, #022d5f 0%, #063e7f 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(27, 90, 122, 0.4);
}

/* Modern Button Styles */
.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(2, 45, 95, 0.4);
}

.btn-modern .btn-text,
.btn-modern .btn-icon {
    position: relative;
    z-index: 2;
}

/* Button glow effects - Removed custom modifications */

.btn-primary-modern {
    background: linear-gradient(135deg, #063e7f 0%, #022d5f 100%);
    color: white;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(2, 45, 95, 0.4);
    border: none;
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(27, 90, 122, 0.4);
    color: white;
    text-decoration: none;
}

.btn-primary-modern .btn-icon svg {
    width: 16px;
    height: 16px;
}

.single-prod .price {
    font-weight: 700;
        background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    color: white;
    font-size: 1.1rem;
}

.single-prod {
    margin-top: 30px;
}

.btn-outline-modern {
    background: white;
    color: #1b5a7a;
    border: 2px solid #1b5a7a;
    backdrop-filter: blur(20px);
}

.btn-outline-modern:hover {
    background: linear-gradient(135deg, #022d5f 0%, #063e7f 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(27, 90, 122, 0.4);
}

/* Section Styles */
section {
    padding: 1.5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 5px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
display: none;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Grid System */
.grid {
    display: grid;
    gap: var(--spacing-xl);
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Card Styles */
.card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .nav-menu {
        display: none;
    }
    
    .icons {
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    section {
        padding: 1rem 0;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --gray-200: #000000;
        --gray-300: #333333;
        --gray-400: #666666;
        --gray-500: #999999;
    }
}

/* Index.php - Homepage Styles */
.ultra-modern-homepage {
    padding: 0;
}

/* Revolutionary Hero Section */
.revolutionary-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    overflow: hidden;
}

.hero-3d-background {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.geometric-shapes {
    position: absolute;
    inset: 0;
    background: transparent;
    animation: geometricFloat 25s ease-in-out infinite !important;
    animation-play-state: running !important;
    will-change: transform, opacity;
    transform: translateZ(0);
}

.dynamic-particles {
    position: absolute;
    inset: 0;
    background: transparent;
    animation: particleMesh 30s linear infinite !important;
    animation-play-state: running !important;
    will-change: transform;
    transform: translateZ(0);
}

.gradient-mesh {
    position: absolute;
    inset: 0;
    background: transparent;
    animation: meshRotate 40s linear infinite !important;
    animation-play-state: running !important;
    will-change: transform;
    transform: translateZ(0);
}

.floating-particles {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 40% 60%, rgba(106, 200, 198, 0.08) 1px, transparent 1px);
    background-size: 60px 60px, 90px 90px, 70px 70px;
    animation: floatingParticles 25s linear infinite !important;
    animation-play-state: running !important;
    pointer-events: none;
    will-change: transform;
    transform: translateZ(0);
}

@keyframes particleFloat {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

@keyframes meshRotate {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.05); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes geometricFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.8;
    }
    25% { 
        transform: translateY(-10px) rotate(1deg) scale(1.02);
        opacity: 1;
    }
    50% { 
        transform: translateY(-20px) rotate(0deg) scale(1.05);
        opacity: 0.9;
    }
    75% { 
        transform: translateY(-10px) rotate(-1deg) scale(1.02);
        opacity: 1;
    }
}

@keyframes particleMesh {
    0% { transform: translateX(0px) translateY(0px) rotate(0deg); }
    25% { transform: translateX(10px) translateY(-5px) rotate(90deg); }
    50% { transform: translateX(0px) translateY(-10px) rotate(180deg); }
    75% { transform: translateX(-10px) translateY(-5px) rotate(270deg); }
    100% { transform: translateX(0px) translateY(0px) rotate(360deg); }
}

@keyframes floatingParticles {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    33% { transform: translateY(-15px) translateX(8px) rotate(120deg); }
    66% { transform: translateY(-30px) translateX(-8px) rotate(240deg); }
    100% { transform: translateY(0px) translateX(0px) rotate(360deg); }
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    width: 100%;
}

/* Mobile responsive styles for hero content wrapper */
@media (max-width: 1024px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-content-wrapper {
        gap: 32px;
    }
}

@media (max-width: 576px) {
    .hero-content-wrapper {
        gap: 24px;
    }
}

.hero-text-content {
    color: white;
}

.hero-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 32px;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.badge-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: badgeGlow 3s ease-in-out infinite;
}

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


.hero-title-revolutionary {
    font-family: var(--font-heading);
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.title-line-1,
.title-line-2 {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: titleSlideIn 1s ease-out forwards;
}

.title-line-1 {
    animation-delay: 0.2s;
}

.title-line-2 {
    animation-delay: 0.4s;
}

.title-highlight-modern {
    display: block;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: none !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
    opacity: 0;
    transform: translateY(50px);
    animation: titleSlideIn 1s ease-out 0.6s forwards;
}

@keyframes titleSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description-modern {
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.7;
    margin-bottom: 0.75rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.8s forwards;
    color: #ffffff !important;
}

/* Ensure all text in revolutionary-hero is white */
.revolutionary-hero.reveal-section.is-visible,
.revolutionary-hero.reveal-section.is-visible *,
.revolutionary-hero.reveal-section.is-visible .hero-title-revolutionary,
.revolutionary-hero.reveal-section.is-visible .title-line-1,
.revolutionary-hero.reveal-section.is-visible .title-line-2,
.revolutionary-hero.reveal-section.is-visible .title-highlight-modern,
.revolutionary-hero.reveal-section.is-visible .hero-description-modern,
.revolutionary-hero.reveal-section.is-visible .hero-badge-modern,
.revolutionary-hero.reveal-section.is-visible .hero-text-content,
.revolutionary-hero.reveal-section.is-visible .hero-text-content *,
.revolutionary-hero.reveal-section.is-visible span,
.revolutionary-hero.reveal-section.is-visible p,
.revolutionary-hero.reveal-section.is-visible h1,
.revolutionary-hero.reveal-section.is-visible h2,
.revolutionary-hero.reveal-section.is-visible h3,
.revolutionary-hero.reveal-section.is-visible h4,
.revolutionary-hero.reveal-section.is-visible h5,
.revolutionary-hero.reveal-section.is-visible h6 {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

.revolutionary-hero.reveal-section.is-visible .title-highlight-modern {
    background: none !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #ffffff !important;
}

.hero-actions-modern {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 1s forwards;
}

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

/* Hero Visual Content */
.hero-visual-content {
    position: relative;
    height: 500px;
}

.hero-3d-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-cards {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 16px;
    color: white;
    text-align: center;
    animation: cardFloat 8s ease-in-out infinite !important;
    animation-play-state: running !important;
    will-change: transform, opacity;
    transform: translateZ(0);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes cardFloat {
    0%, 100% { 
        transform: translateZ(0) translateY(0px) translateX(0px) rotateX(0deg) rotateY(0deg) scale(1);
        opacity: 0.9;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    25% { 
        transform: translateZ(0) translateY(-15px) translateX(5px) rotateX(2deg) rotateY(1deg) scale(1.02);
        opacity: 1;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }
    50% { 
        transform: translateZ(0) translateY(-25px) translateX(-5px) rotateX(0deg) rotateY(3deg) scale(1.05);
        opacity: 0.95;
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    }
    75% {
        transform: translateZ(0) translateY(-15px) translateX(8px) rotateX(-1deg) rotateY(2deg) scale(1.02);
        opacity: 1;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }
}

.card-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.card-text {
    font-size: 12px;
    font-weight: 600;
}

.hero-main-visual {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-image-3d {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: none;
    transition: transform 0.3s ease;
    animation: heroImageFloat 12s ease-in-out infinite;
    will-change: transform;
}

.visual-overlay-effects {
    position: absolute;
    inset: 0;
    background: transparent !important;
    pointer-events: none;
    /* Continuous movement animations */
    animation: visualOverlayFloat 8s ease-in-out infinite !important;
    z-index: 1;
    /* Ensure animation is not paused */
    animation-play-state: running !important;
    /* Force hardware acceleration */
    transform: translateZ(0);
    will-change: transform, background, opacity;
}

/* Continuous movement animation for visual overlay */
@keyframes visualOverlayFloat {
    0%, 100% {
        transform: translateZ(0) translateX(0px) translateY(0px) rotate(0deg);
        background: linear-gradient(45deg, rgba(14, 41, 84, 0.3) 0%, rgba(106, 200, 198, 0.3) 100%);
        opacity: 0.8;
    }
    25% {
        transform: translateZ(0) translateX(15px) translateY(-8px) rotate(2deg);
        background: linear-gradient(135deg, rgba(106, 200, 198, 0.5) 0%, rgba(14, 41, 84, 0.4) 100%);
        opacity: 0.9;
    }
    50% {
        transform: translateZ(0) translateX(-8px) translateY(-15px) rotate(-2deg);
        background: linear-gradient(225deg, rgba(27, 90, 122, 0.4) 0%, rgba(106, 200, 198, 0.5) 100%);
        opacity: 0.7;
    }
    75% {
        transform: translateZ(0) translateX(-15px) translateY(8px) rotate(1deg);
        background: linear-gradient(315deg, rgba(14, 41, 84, 0.5) 0%, rgba(27, 90, 122, 0.4) 100%);
        opacity: 0.8;
    }
}

/* Add additional visual effects with pseudo-elements */
.visual-overlay-effects::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: visualOverlayGlow 12s ease-in-out infinite reverse;
}

.visual-overlay-effects::after {
    content: '';
    position: absolute;
    top: 30%;
    right: 20%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(106, 200, 198, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: visualOverlayGlow 15s ease-in-out infinite;
}

@keyframes visualOverlayGlow {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 0.6;
    }
}

@keyframes heroImageFloat {
    0%, 100% {
        transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateZ(0px);
    }
    25% {
        transform: perspective(1000px) rotateY(-3deg) rotateX(7deg) translateZ(2px);
    }
    50% {
        transform: perspective(1000px) rotateY(-7deg) rotateX(3deg) translateZ(-2px);
    }
    75% {
        transform: perspective(1000px) rotateY(-4deg) rotateX(6deg) translateZ(1px);
    }
}

/* Header Styles */
.home .ufarm-header {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 99999;
}

.home .ufarm-header #main-header  { 
background: white;
}



.site-content {
    margin-top: 0px;
    position: relative;
}

/* ===== GALLERY PAGE STYLES ===== */
/* Gallery Page Styles */
.gallery-page {
    padding: 1.5rem 0;
    background:white;
}

.gallery-header {
    margin-bottom: 1rem;
}

.gallery-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #1b5a7a;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.gallery-description {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background: white;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.gallery-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(27, 90, 122, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-zoom-icon {
    color: white;
    font-size: 2rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-zoom-icon {
    transform: scale(1);
}

.gallery-caption {
    padding: 16px;
    background: white;
}

.gallery-caption p {
    margin: 0;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Empty State */
.gallery-empty {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    margin: 40px auto;
    max-width: 400px;
}

.empty-icon {
    font-size: 4rem;
    color: #cbd5e1;
}

.gallery-empty h3 {
    color: #64748b;
    margin-bottom: 12px;
}

.gallery-empty p {
    color: #94a3b8;
    margin: 0;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999999;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lightbox-container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.lightbox-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.lightbox-info {
    margin-top: 20px;
    text-align: center;
    color: white;
}

.lightbox-counter {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #e2e8f0;
}

.lightbox-caption {
    font-size: 1rem;
    color: #cbd5e1;
    max-width: 600px;
    line-height: 1.5;
}

/* Lightbox Controls */
.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* Gallery Responsive Design */
@media (max-width: 768px) {
    .gallery-page {
        padding: 60px 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 16px;
        padding: 0 20px;
    }
    
    .gallery-title {
        font-size: 2.5rem;
        margin-bottom: 16px;
    }
    
    .gallery-description {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .lightbox-container {
        max-width: 95vw;
        max-height: 95vh;
        padding: 20px;
    }
    
    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .gallery-item {
        border-radius: 12px;
    }
}

/* Services Section */
.services-section-modern {
    padding: 2rem 0;
    background: var(--gray-50);
}

.section-header-modern {
    text-align: left;
    margin-bottom: 1.5rem;
}

.section-title-modern {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
    position: relative;
}


.section-subtitle-modern {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0;
}

/* Unified section title sizing for modern sections */
.section-title-modern,
.services-title-mahnites {
    font-size: clamp(2rem, 4vw, 2.75rem) !important;
    line-height: 1.3;
    margin-bottom: 0px;
}

/* Base section title style handled by .section-title */

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.service-card-modern {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(14, 41, 84, 0.1);
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
    overflow: hidden;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(14, 41, 84, 0.15);
}

.service-icon-modern {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px auto;
    padding: 8px;
}

.icon-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    border-radius: 20px;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.service-card-modern:hover .icon-background {
    transform: rotate(45deg) scale(1.1);
}

.icon-emoji {
    position: relative;
    z-index: 2;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.service-icon-modern .service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    z-index: 2;
    position: relative;
    margin: 4px;
}

.service-icon-modern .service-icon-svg {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--brand-primary);
}

.service-icon-modern .service-icon-svg svg {
    width: 48px;
    height: 48px;
    transition: all 0.3s ease;
    fill: currentColor;
    stroke: currentColor;
}

.service-card-modern:hover .service-icon-modern .service-icon-svg svg {
    transform: scale(1.1);
    fill: var(--brand-secondary);
    stroke: var(--brand-secondary);
}

.service-content {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-btn {
    display: block;
    margin: 20px auto 0 auto;
    text-align: center;
    align-self: center;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.service-description {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-hover-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(14, 41, 84, 0.05), transparent);
    transition: left 0.6s ease;
}

.service-card-modern:hover .service-hover-effect {
    left: 100%;
}

/* Products Section */
.products-showcase-modern {
    padding: 2rem 0;
    background: white;
}

.products-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

@media (max-width: 1024px) {
    .products-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
	.about-hero{
		height: 282px!important;
	}
	.services-hero {
		padding-top: 15px !important;
	}
	.events-intro-heading {
    padding: 1rem 0 0!important;
}
	.section-title-modern, .services-title-mahnites, h2.section-title {
		    margin-bottom: 0rem;
	}
	.news-intro-heading {
    padding: 1rem 0 0!important;
}
	.events-grid-section {
    padding: 5px 0;
}
	    .news-grid-section {
        padding: 0px 0 !important;
    }
    
    .service-card-modern {
        height: 380px;
    }
	.page-hero .page-hero-inner {
		    margin-top: 45px;
	}
	.page-template-page-galeri .page-hero .page-hero-inner {
        margin-top: 0px;
    }
	
	.page-template-page-sherbimet .page-hero .page-hero-inner {
        margin-top: 1px;
    }
	
    .gallery-page {
        padding: 20px 0;
    }
	.about-hero .about-hero-inner {
		margin-top: 1px!important;
	}
	.page-hero, .services-hero.page-hero, .careers-hero.page-hero, .partners-hero.page-hero, .contact-hero.page-hero, .events-hero.page-hero, .gallery-hero.page-hero, .pharmacovigilance-hero.page-hero {
		height: 282px!important;
		        padding-top: 10px !important;
	}
}

@media (max-width: 768px) {
    .products-grid-modern {
                grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .service-card-modern {
        height: 360px;
    }
}

.product-card-modern {
    position: relative;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(14, 41, 84, 0.1);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: all 0.4s ease;
}

.product-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(14, 41, 84, 0.15);
}

.product-image-container {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.product-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    margin-right: 8px;
}

.sale-badge {
    background: linear-gradient(135deg, var(--error) 0%, #DC2626 100%);
}

.product-actions-overlay {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.product-card-modern:hover .product-actions-overlay {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--gray-700);
}

.action-btn:hover {
    background: white;
    color: var(--primary);
    transform: scale(1.1);
}

.action-btn.whatsapp-btn {
    color: #25D366;
}

.action-btn.whatsapp-btn:hover {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.action-btn.in-wishlist {
    color: var(--error);
    background: rgba(239, 68, 68, 0.1);
}

.action-btn.in-wishlist svg {
    fill: currentColor;
}

.action-btn svg {
    width: 18px;
    height: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    flex-shrink: 0;
}

.action-btn:hover svg {
    transform: scale(1.15);
}

.action-btn i {
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.action-btn:hover i {
    transform: scale(1.15);
}

/* Wishlist specific styles */
.wishlist-btn.is-added {
    color: var(--error);
    background: rgba(239, 68, 68, 0.1);
}

.wishlist-btn.is-added svg {
    fill: currentColor;
}

.product-info-modern {
    padding: 24px;
}

.product-title-modern {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.product-title-modern a {
    color: var(--gray-900);
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title-modern a:hover {
    color: var(--primary);
}

.product-rating-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: var(--gray-300);
    font-size: 14px;
}

.star.filled {
    color: var(--warning);
}

.star.half {
    background: linear-gradient(90deg, var(--warning) 50%, var(--gray-300) 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-count {
    font-size: 12px;
    color: var(--gray-500);
}

.product-price-modern {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.product-actions-modern {
    display: flex;
    gap: 8px;
}

.btn-add-to-cart,
.btn-view-options {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-add-to-cart {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    color: white;
}

.btn-add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 41, 84, 0.3);
}

.btn-view-options {
    background: var(--gray-100);
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
}

.btn-view-options:hover {
    background: var(--gray-200);
    color: var(--gray-900);
}

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

/* Newsletter Section Home */
.newsletter-section-home {
    padding: 2rem 0;
    padding-top: 42px !important;
    background: #022d5f !important; /* Fallback */
    background: linear-gradient(135deg, #022d5f 0%, #063e7f 100%) !important;
    background: -webkit-linear-gradient(135deg, #022d5f 0%, #063e7f 100%) !important;
    background: -moz-linear-gradient(135deg, #022d5f 0%, #063e7f 100%) !important;
    background: -o-linear-gradient(135deg, #022d5f 0%, #063e7f 100%) !important;
    position: relative;
    overflow: hidden;
    height: 222px;
    display: block !important;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.newsletter-text {
    flex: 1;
    max-width: 500px;
}

.newsletter-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.newsletter-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.newsletter-form {
    flex: 1;
    max-width: 500px;
}

.newsletter-form .form-group {
    display: flex;
    gap: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(106, 200, 198, 0.1) 100%);
    padding: 8px;
    border-radius: 60px;
    border: 2px solid rgba(106, 200, 198, 0.3);
    backdrop-filter: blur(10px);
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 20px 25px;
    color: var(--brand-primary);
    font-size: 1.1rem;
    outline: none;
    border-radius: 60px;
    font-weight: 500;
}

.newsletter-form input::placeholder {
    color: rgba(14, 41, 84, 0.6);
    font-weight: 400;
}

.newsletter-form input:focus {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 3px rgba(106, 200, 198, 0.3);
}

.newsletter-form .btn-subscribe {
    background: linear-gradient(135deg, #022d5f 0%, #063e7f 100%);
    background: -webkit-linear-gradient(135deg, #022d5f 0%, #063e7f 100%);
    background: -moz-linear-gradient(135deg, #022d5f 0%, #063e7f 100%);
    border: none;
    padding: 20px 35px;
    border-radius: 60px;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
	width:max-content;
}

.newsletter-form .btn-subscribe:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #063e7f 0%, #022d5f 100%);
    color: white;
    text-decoration: none;
}

.newsletter-form .btn-subscribe:active {
    transform: translateY(-1px);
}

.newsletter-form .form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 15px;
    font-weight: 600;
    text-align: center;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.newsletter-form .form-message.success {
    background: rgba(34, 197, 94, 0.9);
    color: white;
    border: 2px solid rgba(34, 197, 94, 0.5);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.2);
}

.newsletter-form .form-message.error {
    background: rgba(239, 68, 68, 0.9);
    color: white;
    border: 2px solid rgba(239, 68, 68, 0.5);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.2);
}


/* Additional decorative elements */
.newsletter-section-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

@media (max-width: 1024px) {
    .newsletter-content {
        gap: 60px;
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-title {
        font-size: 2.5rem;
    }
    
    .newsletter-form .form-group {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .newsletter-section-home {
        padding: 1.5rem 0;
    }
    
    .newsletter-content {
        gap: 40px;
        padding: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
        border-radius: 20px;
    }
    
    .newsletter-form input {
        padding: 18px 20px;
        border-radius: 15px;
        font-size: 1rem;
    }
    
    .newsletter-form .btn-subscribe {
        padding: 18px 25px;
        border-radius: 15px;
        justify-content: center;
        font-size: 1rem;
    }
}

/* Features Section */
.features-section-modern {
    padding: 2rem 0;
    background: var(--gray-50);
}

.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

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

@media (max-width: 768px) {
    .features-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
	
	.feature-description {
    font-size: 12px !important;
}
	@media (max-width: 768px) { 
	.feature-title, .service-title-mahnites, .feature-card-modern h3 {
    font-size: 17px !important;
    line-height: 1.4;
    margin-bottom: 1rem;
}
	}
	
	
	
	
}

.feature-card-modern {
    text-align: left;
    padding: 40px 24px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(14, 41, 84, 0.1);
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
}

.feature-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(14, 41, 84, 0.15);
}

.feature-icon-modern {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 0 24px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.icon-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    border-radius: 50%;
    opacity: 0.1;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.1); opacity: 0.2; }
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.feature-description {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Category Showcase */
.category-showcase-modern {
    padding: 2rem 0;
    background: white;
}

.categories-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.category-card-modern {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(14, 41, 84, 0.1);
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
}

.category-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(14, 41, 84, 0.15);
}

.category-image-container {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-card-modern:hover .category-image {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 41, 84, 0.8) 0%, rgba(106, 200, 198, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card-modern:hover .category-overlay {
    opacity: 1;
}


.category-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: all 0.3s ease;
}

.category-card-modern:hover .category-icon {
    opacity: 1;
}

.category-info {
    padding: 24px;
    background: white;
}

.category-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.category-title a {
    color: var(--gray-900);
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-title a:hover {
    color: var(--primary);
}

.category-count {
    font-size: 14px;
    color: var(--gray-600);
}

/* CTA Section */
.cta-section-modern {
    padding: 2rem 0;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 24px;
}

.cta-description {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Home Slider Animated Styles */
.home-slider-animated {
    width: 100%;
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #022d5f 0%, #063e7f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-full-width {
    width: 100%;
    height: 100%;
    position: relative;
}

.animated-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: floatOrb 20s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(106, 200, 198, 0.3) 0%, transparent 70%);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(14, 41, 84, 0.4) 0%, transparent 70%);
    top: 60%;
    right: 20%;
    animation-delay: 7s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(106, 200, 198, 0.2) 0%, transparent 70%);
    bottom: 20%;
    left: 30%;
    animation-delay: 14s;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -30px) scale(1.1); }
    50% { transform: translate(-30px, -50px) scale(0.9); }
    75% { transform: translate(-50px, 30px) scale(1.05); }
}

.floating-pills-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* Modern Animation Classes */
.modern-pill-slow {
    animation: modernFloatSlow 12s ease-in-out infinite !important;
    animation-play-state: running !important;
}

.modern-pill-medium {
    animation: modernFloatMedium 8s ease-in-out infinite !important;
    animation-play-state: running !important;
}

.modern-pill-fast {
    animation: modernFloatFast 6s ease-in-out infinite !important;
    animation-play-state: running !important;
}

.modern-pill-random1 {
    animation: modernFloatRandom1 10s ease-in-out infinite !important;
    animation-play-state: running !important;
}

.modern-pill-random2 {
    animation: modernFloatRandom2 9s ease-in-out infinite !important;
    animation-play-state: running !important;
}

.modern-pill-random3 {
    animation: modernFloatRandom3 11s ease-in-out infinite !important;
    animation-play-state: running !important;
}

/* Test animation for debugging */
.modern-pill-test {
    animation: modernFloatSlow 3s ease-in-out infinite !important;
    animation-play-state: running !important;
}

/* Modern Professional Pill Animations */
@keyframes modernFloatSlow {
    0%, 100% { 
        transform: translateZ(0) translateX(0px) translateY(0px) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    25% { 
        transform: translateZ(0) translateX(20px) translateY(-15px) rotate(5deg) scale(1.05);
        opacity: 0.8;
    }
    50% { 
        transform: translateZ(0) translateX(-10px) translateY(-25px) rotate(-3deg) scale(1.1);
        opacity: 0.7;
    }
    75% { 
        transform: translateZ(0) translateX(-25px) translateY(-10px) rotate(8deg) scale(1.03);
        opacity: 0.9;
    }
}

@keyframes modernFloatMedium {
    0%, 100% { 
        transform: translateZ(0) translateX(0px) translateY(0px) rotate(0deg) scale(1);
        opacity: 0.5;
    }
    33% { 
        transform: translateZ(0) translateX(15px) translateY(-20px) rotate(-7deg) scale(1.08);
        opacity: 0.8;
    }
    66% { 
        transform: translateZ(0) translateX(-20px) translateY(-15px) rotate(6deg) scale(1.06);
        opacity: 0.6;
    }
}

@keyframes modernFloatFast {
    0%, 100% { 
        transform: translateZ(0) translateX(0px) translateY(0px) rotate(0deg) scale(1);
        opacity: 0.4;
    }
    20% { 
        transform: translateZ(0) translateX(25px) translateY(-10px) rotate(4deg) scale(1.1);
        opacity: 0.7;
    }
    40% { 
        transform: translateZ(0) translateX(10px) translateY(-30px) rotate(-5deg) scale(1.15);
        opacity: 0.6;
    }
    60% { 
        transform: translateZ(0) translateX(-15px) translateY(-20px) rotate(3deg) scale(1.08);
        opacity: 0.8;
    }
    80% { 
        transform: translateZ(0) translateX(-30px) translateY(-5px) rotate(-2deg) scale(1.05);
        opacity: 0.5;
    }
}

@keyframes modernFloatRandom1 {
    0%, 100% { 
        transform: translateZ(0) translateX(0px) translateY(0px) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    16% { 
        transform: translateZ(0) translateX(18px) translateY(-12px) rotate(3deg) scale(1.04);
        opacity: 0.8;
    }
    32% { 
        transform: translateZ(0) translateX(-8px) translateY(-22px) rotate(-4deg) scale(1.09);
        opacity: 0.7;
    }
    48% { 
        transform: translateZ(0) translateX(-22px) translateY(-8px) rotate(6deg) scale(1.06);
        opacity: 0.9;
    }
    64% { 
        transform: translateZ(0) translateX(12px) translateY(-18px) rotate(-2deg) scale(1.02);
        opacity: 0.5;
    }
    80% { 
        transform: translateZ(0) translateX(-15px) translateY(-25px) rotate(5deg) scale(1.11);
        opacity: 0.8;
    }
}

@keyframes modernFloatRandom2 {
    0%, 100% { 
        transform: translateZ(0) translateX(0px) translateY(0px) rotate(0deg) scale(1);
        opacity: 0.5;
    }
    14% { 
        transform: translateZ(0) translateX(-20px) translateY(-15px) rotate(-6deg) scale(1.07);
        opacity: 0.8;
    }
    28% { 
        transform: translateZ(0) translateX(15px) translateY(-25px) rotate(4deg) scale(1.12);
        opacity: 0.6;
    }
    42% { 
        transform: translateZ(0) translateX(-12px) translateY(-8px) rotate(-3deg) scale(1.03);
        opacity: 0.9;
    }
    56% { 
        transform: translateZ(0) translateX(22px) translateY(-18px) rotate(7deg) scale(1.08);
        opacity: 0.7;
    }
    70% { 
        transform: translateZ(0) translateX(8px) translateY(-30px) rotate(-5deg) scale(1.13);
        opacity: 0.5;
    }
    84% { 
        transform: translateZ(0) translateX(-18px) translateY(-12px) rotate(2deg) scale(1.05);
        opacity: 0.8;
    }
}

@keyframes modernFloatRandom3 {
    0%, 100% { 
        transform: translateZ(0) translateX(0px) translateY(0px) rotate(0deg) scale(1);
        opacity: 0.7;
    }
    12% { 
        transform: translateZ(0) translateX(25px) translateY(-20px) rotate(8deg) scale(1.14);
        opacity: 0.9;
    }
    24% { 
        transform: translateZ(0) translateX(-15px) translateY(-10px) rotate(-4deg) scale(1.06);
        opacity: 0.6;
    }
    36% { 
        transform: translateZ(0) translateX(10px) translateY(-35px) rotate(3deg) scale(1.16);
        opacity: 0.8;
    }
    48% { 
        transform: translateZ(0) translateX(-25px) translateY(-15px) rotate(-7deg) scale(1.09);
        opacity: 0.5;
    }
    60% { 
        transform: translateZ(0) translateX(20px) translateY(-25px) rotate(5deg) scale(1.11);
        opacity: 0.9;
    }
    72% { 
        transform: translateZ(0) translateX(-8px) translateY(-5px) rotate(-2deg) scale(1.02);
        opacity: 0.7;
    }
    84% { 
        transform: translateZ(0) translateX(18px) translateY(-30px) rotate(6deg) scale(1.13);
        opacity: 0.6;
    }
}

.slider-content {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.corner-text-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.text-bubble {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(106, 200, 198, 0.2) 100%);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    color: var(--brand-primary);
    font-size: 14px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(106, 200, 198, 0.3);
    animation: bubbleFloat 8s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.bubble-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.bubble-2 {
    top: 25%;
    right: 15%;
    animation-delay: 2s;
}

.bubble-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.bubble-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 6s;
}

@keyframes bubbleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 1;
    }
}

.main-branding {
    text-align: center;
    color: white;
    position: relative;
    z-index: 4;
}

.brand-logo-animation {
    margin-bottom: 30px;
    animation: logoEntrance 2s ease-out;
}

.logo-container {
    display: inline-block;
    animation: logoRotate 10s linear infinite;
}

.logo-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(106, 200, 198, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    backdrop-filter: blur(20px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.logo-inner {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #022d5f 0%, #063e7f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 32px;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@keyframes logoEntrance {
    0% {
        transform: scale(0) rotate(180deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes logoRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.brand-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.title-word {
    display: inline-block;
    animation: titleSlideIn 1.5s ease-out;
}

.word-1 {
    animation-delay: 0.5s;
    color: white;
}

.word-2 {
    animation-delay: 0.8s;
    background: linear-gradient(135deg, #022d5f 0%, #063e7f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.brand-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 0.75rem;
    opacity: 0.9;
    font-weight: 300;
    animation: subtitleFadeIn 2s ease-out 1s both;
}

@keyframes subtitleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 0.9;
        transform: translateY(0);
    }
}

.brand-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: actionsSlideUp 2s ease-out 1.5s both;
}

@keyframes actionsSlideUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-brand-primary,
.btn-brand-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
}

.btn-brand-primary {
    background: linear-gradient(135deg, #022d5f 0%, #063e7f 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(106, 200, 198, 0.4);
}

.btn-brand-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(106, 200, 198, 0.6);
}

.btn-brand-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-brand-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn-brand-primary:hover .btn-icon,
.btn-brand-secondary:hover .btn-icon {
    transform: translateX(5px);
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat 12s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10%, 90% {
        opacity: 1;
    }
    50% {
        transform: translateY(-50px) translateX(20px);
        opacity: 0.8;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .home-slider-animated {
        height: 80vh;
        min-height: 500px;
    }
    
    .modern-pill {
        transform: scale(0.8);
    }
    
    .logo-circle {
        width: 80px;
        height: 80px;
    }
    
    .logo-inner {
        width: 60px;
        height: 60px;
    }
    
    .logo-text {
        font-size: 24px;
    }
    
    .brand-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-brand-primary,
    .btn-brand-secondary {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .text-bubble {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-content {
    background: white;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-left: 4px solid;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.notification-success .notification-content {
    border-left-color: #6ac8c6;
    background: linear-gradient(135deg, rgba(106, 200, 198, 0.1) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.notification-error .notification-content {
    border-left-color: #e74c3c;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.notification-info .notification-content {
    border-left-color: #3498db;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.notification-message {
    font-weight: 500;
    color: var(--brand-primary);
    flex: 1;
}

.notification-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.notification-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--brand-primary);
}

/* Loading Spinner */
.loading-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success Icon */
.success-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 16px;
    font-size: 12px;
    font-weight: bold;
    margin-right: 8px;
    animation: successPulse 0.6s ease-in-out;
}

@keyframes successPulse {
    0% { transform: scale(0.8); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

/* Cart Page Styles */
.cart-page-modern {
    padding: 1.5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.cart-header {
    text-align: center;
    margin-bottom: 1rem;
}

.cart-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--brand-primary);
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cart-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 300;
}

.cart-table-wrapper {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.75rem;
    overflow-x: auto;
}

.cart-table-modern {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.cart-table-modern th {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    color: white;
    padding: 20px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-table-modern th:first-child {
    border-top-left-radius: 12px;
}

.cart-table-modern th:last-child {
    border-top-right-radius: 12px;
}

.cart-item-modern {
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.cart-item-modern:hover {
    background: rgba(106, 200, 198, 0.05);
}

.cart-table-modern td {
    padding: 25px 15px;
    vertical-align: middle;
}

.product-thumbnail img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.product-name {
    font-weight: 600;
    color: var(--brand-primary);
}

.product-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-name a:hover {
    color: var(--brand-secondary);
}

.product-price {
    font-weight: 700;
    color: var(--brand-secondary);
    font-size: 1.1rem;
}

.product-quantity {
    text-align: center;
}

.product-quantity .quantity {
    display: inline-flex;
    align-items: center;
    border: 2px solid #eee;
    border-radius: 25px;
    overflow: hidden;
}

.product-quantity input[type="number"] {
    width: 60px;
    text-align: center;
    border: none;
    padding: 10px 5px;
    font-weight: 600;
    color: var(--brand-primary);
}

.product-subtotal {
    font-weight: 700;
    color: var(--brand-primary);
    font-size: 1.1rem;
}

.remove-product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #022d5f 0%, #063e7f 100%);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.remove-product-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5);
    color: white;
}

.cart-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-update-cart {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--brand-secondary) 0%, #4fd1c7 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(106, 200, 198, 0.3);
}

.btn-update-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(106, 200, 198, 0.4);
}

.coupon-form {
    display: flex;
    gap: 10px;
    align-items: center;
    flex: 1;
    max-width: 400px;
}

.coupon-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #eee;
    border-radius: 25px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.coupon-input:focus {
    outline: none;
    border-color: var(--brand-secondary);
    box-shadow: 0 0 0 3px rgba(106, 200, 198, 0.1);
}

.btn-apply-coupon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 25px;
    background: linear-gradient(135deg, var(--brand-primary) 0%, #1a4a6b 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(14, 41, 84, 0.3);
}

.btn-apply-coupon:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(14, 41, 84, 0.4);
}

/* Cart Totals */
.cart-totals-modern {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
}

.totals-header {
    margin-bottom: 30px;
    text-align: center;
}

.totals-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--brand-primary);
    margin: 0;
}

.totals-table {
    margin-bottom: 30px;
}

.totals-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.totals-row:last-child {
    border-bottom: none;
}

.totals-row.total {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
    font-size: 1.2rem;
    font-weight: 700;
}

.totals-row .label {
    font-weight: 600;
    color: var(--brand-primary);
}

.totals-row.total .label {
    color: white;
}

.totals-row .value {
    font-weight: 700;
    color: var(--brand-secondary);
}

.totals-row.total .value {
    color: white;
}

/* Checkout Page Styles */
.checkout-page-modern {
    padding: 1.5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.checkout-header {
    text-align: center;
    margin-bottom: 1rem;
}

.checkout-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--brand-primary);
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.checkout-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 300;
}

.checkout-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.checkout-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.checkout-fields {
    margin-bottom: 0.75rem;
}

.checkout-additional-info {
    background: linear-gradient(135deg, rgba(106, 200, 198, 0.1) 0%, rgba(14, 41, 84, 0.05) 100%);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(106, 200, 198, 0.2);
}

.checkout-additional-info h3 {
    color: var(--brand-primary);
    font-weight: 700;
    margin-bottom: 20px;
}

.checkout-order-review {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
}

.order-review-header {
    margin-bottom: 30px;
    text-align: center;
}

.order-review-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--brand-primary);
    margin: 0;
}

/* Add to Cart Button Styles */
.btn-add-to-cart,
.add-to-cart-ajax {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #022d5f 0%, #063e7f 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(106, 200, 198, 0.3);
    pointer-events: auto;
    position: relative;
    z-index: 1;
}

.btn-add-to-cart:hover,
.add-to-cart-ajax:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(106, 200, 198, 0.4);
    color: white;
}

.btn-add-to-cart:disabled,
.add-to-cart-ajax:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-add-to-cart svg,
.add-to-cart-ajax svg {
    transition: transform 0.3s ease;
}

.btn-add-to-cart:hover svg,
.add-to-cart-ajax:hover svg {
    transform: scale(1.1);
}

/* Single Add to Cart Button Styles - Removed custom styling to restore original */

/* View Options Button Styles - Removed custom styling to restore original */

/* Wishlist Button Styles */
.uf-wl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #eee;
    border-radius: 50%;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: auto;
    position: relative;
    z-index: 1;
}

.uf-wl-btn:hover {
    background: rgba(255, 107, 107, 0.1);
    border-color: #1b5a7a;
    color: #1b5a7a;
    transform: scale(1.1);
}

.uf-wl-btn.in-wishlist {
    background: linear-gradient(135deg, #022d5f 0%, #063e7f 100%);
    border-color: #1b5a7a;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.uf-wl-btn.in-wishlist:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5);
}

.uf-wl-btn svg {
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .checkout-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cart-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .coupon-form {
        max-width: none;
    }
    
    .cart-table-wrapper {
        padding: 20px;
    }
    
    .cart-table-modern {
        font-size: 14px;
    }
    
    .cart-table-modern th,
    .cart-table-modern td {
        padding: 15px 10px;
    }
    
    .btn-add-to-cart,
    .add-to-cart-ajax {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .uf-wl-btn {
        width: 35px;
        height: 35px;
    }
}

/* Home Slider Styles */
.modern-slider-section {
    position: relative;
    min-height: 80vh;
    overflow: hidden;
    margin-top: 82px;
}

.slider-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.slider-pattern {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(14, 41, 84, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(106, 200, 198, 0.1) 0%, transparent 50%);
}

.floating-pills-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.modern-slider {
    position: relative;
    z-index: 2;
    height: 80vh;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(14, 41, 84, 0.2);
}

.slider-slide {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.slide-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

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

.slide-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(2, 45, 95, 0.4) 0%, rgba(6, 62, 127, 0.4) 100%);
}

.slide-content {
    position: relative;
    z-index: 3;
    color: white;
    padding: 0 64px;
    max-width: 600px;
}

.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 32px;
    font-size: 14px;
    font-weight: 600;
}

.slide-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
}

.slide-description {
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.7;
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.slide-actions {
    display: flex;
    gap: 20px;
}

/* Floating Pills */
.floating-pills {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

/* Modern Professional Medicine Pills */
.modern-pill {
    position: absolute;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(106, 200, 198, 0.1) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    opacity: 0.6;
    will-change: transform, opacity;
    transform: translateZ(0);
}

/* Medicine tablet shape with scoring lines */
.modern-pill::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 1px;
}

.modern-pill::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 60%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 1px;
}


/* Horizontal movement animation */
@keyframes floatPillHorizontal {
    0%, 100% { 
        transform: translateX(0px) translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    25% { 
        transform: translateX(40px) translateY(-15px) rotate(45deg);
        opacity: 1;
    }
    50% { 
        transform: translateX(80px) translateY(0px) rotate(90deg);
        opacity: 0.8;
    }
    75% { 
        transform: translateX(40px) translateY(15px) rotate(135deg);
        opacity: 0.9;
    }
}

/* Circular movement animation */
@keyframes floatPillCircular {
    0% { 
        transform: translateX(0px) translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    25% { 
        transform: translateX(30px) translateY(-30px) rotate(90deg);
        opacity: 1;
    }
    50% { 
        transform: translateX(0px) translateY(-60px) rotate(180deg);
        opacity: 0.8;
    }
    75% { 
        transform: translateX(-30px) translateY(-30px) rotate(270deg);
        opacity: 0.9;
    }
    100% { 
        transform: translateX(0px) translateY(0px) rotate(360deg);
        opacity: 0.7;
    }
}

/* Diagonal movement animation */
@keyframes floatPillDiagonal {
    0%, 100% { 
        transform: translateX(0px) translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    25% { 
        transform: translateX(25px) translateY(-35px) rotate(45deg);
        opacity: 1;
    }
    50% { 
        transform: translateX(50px) translateY(-70px) rotate(90deg);
        opacity: 0.8;
    }
    75% { 
        transform: translateX(25px) translateY(-35px) rotate(135deg);
        opacity: 0.9;
    }
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 32px;
}

.slider-nav {
    display: flex;
    gap: 12px;
}

.slider-prev,
.slider-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: white;
    transform: scale(1.2);
}

/* About Page Styles */
.modern-about-page {
    padding: 0;
}

/* About Hero - image background, vetëm titulli i faqes të centruar */
.about-hero {
    position: relative;
   height: 250px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    margin-top: 0;
    padding: 3rem 0;
}

/* Fallback kur nuk ka featured image */
.about-hero:not([style*="background-image"]) {
    background: linear-gradient(135deg, #1a5f5a 0%, #0d3d3a 50%, #0a2d2b 100%);
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 45, 42, 0.55);
    z-index: 1;
}

.about-hero .about-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.about-hero .hero-content.about-hero-content {
    text-align: left;
    max-width: 100%;
    margin: 0;
}

.about-hero .hero-title.about-hero-title {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

/* Page Hero - i njëjti stil për Shërbimet, Punesim, Partneret, Kontakt, Lajme, Eventet, Galeria, Farmacovigilancë */
.page-hero,
.services-hero.page-hero,
.careers-hero.page-hero,
.partners-hero.page-hero,
.contact-hero.page-hero,
.events-hero.page-hero,
.gallery-hero.page-hero,
.pharmacovigilance-hero.page-hero {
    position: relative;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    margin-top: 0;
    padding: 3rem 0;
}
.page-hero:not([style*="background-image"]) {
    background: linear-gradient(135deg, #1a5f5a 0%, #0d3d3a 50%, #0a2d2b 100%);
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 45, 42, 0.55);
    z-index: 1;
}
.page-hero .page-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.page-hero .page-hero-content {
    text-align: left;
    max-width: 100%;
    margin: 0;
}
.page-hero .page-hero-title {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

/* Përshkrimi poshtë hero - Eventet */
.events-intro {
    padding: 2rem 0 0.5rem;
}

/* Shërbimet - titulli "Shërbime profesionale për kujdesin shëndetësor" i njëjti format si Misioni dhe Vizioni */
.premium-services-section .services-intro-header {
    text-align: left;
    margin-bottom: 1.5rem;
}

.premium-services-section .services-intro-header .section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gray-900);
}

/* Punesim - titulli "Bashkohu me ekipin tonë Profesional" i njëjti format si Misioni dhe Vizioni */
.career-advantages-section .careers-intro-header {
    text-align: left;
    margin-bottom: 1.5rem;
}

.career-advantages-section .careers-intro-header .section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gray-900);
}

/* Farmacovigjilancë - titulli "Raportoni efektet Anësore" i njëjti format si Misioni dhe Vizioni */
.pharmacovigilance-info .pharmacovigilance-intro-header {
    text-align: left;
    margin-bottom: 1.5rem;
}

.pharmacovigilance-info .pharmacovigilance-intro-header .section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gray-900);
}

/* Kontakt - titulli "Kontaktoni Kompaninë tonë" i njëjti format si Misioni dhe Vizioni */
.contact-info .contact-intro-header {
    text-align: left;
    margin-bottom: 1.5rem;
}

.contact-info .contact-intro-header .section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gray-900);
}

/* Inovacion dhe përgjegjësi - i njëjti format dhe madhësi si Misioni dhe Vizioni */
.about-intro-heading {
    padding: 2rem 0 0;
}

.about-intro-heading .section-header,
.about-intro-heading .about-intro-header {
    text-align: left;
    margin-bottom: 0px;
}

.about-intro-heading .section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gray-900);
}

/* News Intro Heading - Same structure as About page */
.news-intro-heading {
    padding: 2rem 0 0;
}

.news-intro-heading .section-header,
.news-intro-heading .news-intro-header {
    text-align: left;
    margin-bottom: 0px;
}

/* Events Intro Heading - Same structure as About page */
.events-intro-heading {
    padding: 2rem 0 0;
}

.events-intro-heading .section-header,
.events-intro-heading .events-intro-header {
    text-align: left;
    margin-bottom: 0px;
}

/* Përmbajtja e faqes menjëherë poshtë hero */
.about-page-content {
    padding: 0;
}

.about-page-content .about-page-text {
    max-width: 100%;
    margin: 0 auto;
}

.about-page-content .about-page-text p {
    margin-bottom: 1rem;
}

.about-page-content .about-page-text p:last-child {
    margin-bottom: 0;
}

.about-hero .hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.about-hero .floating-pills {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.about-hero .hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: left;
    max-width: 800px;
    margin: 0;
}

.about-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 600;
}

.about-hero .hero-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 12px 0;
}

.about-hero .title-highlight {
    background: linear-gradient(135deg, #fff 0%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero .hero-description {
    font-size: clamp(16px, 1.5vw, 20px);
    opacity: 0.9;
    line-height: 1.7;
    color: white;
    text-align: left;
    margin-bottom: 30px;
}

.about-hero .hero-description p {
    margin-bottom: 1rem;
    color: white;
}

.about-hero .hero-description p:last-child {
    margin-bottom: 0;
}

.about-hero .hero-description h1,
.about-hero .hero-description h2,
.about-hero .hero-description h3,
.about-hero .hero-description h4,
.about-hero .hero-description h5,
.about-hero .hero-description h6 {
    color: white;
    margin-bottom: 1rem;
}

.about-hero .hero-description strong,
.about-hero .hero-description b {
    color: white;
    font-weight: 600;
}

.about-hero .hero-description em,
.about-hero .hero-description i {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

/* Responsive - About Hero Description */
@media (max-width: 768px) {
    .about-hero .hero-description {
        text-align: left;
    }
}

/* Mission & Vision Section */
.mission-vision {
    padding: 2rem 0;
    background: var(--gray-50);
}

.mission-vision .section-header {
    text-align: left;
}

.mission-vision .section-subtitle {
    margin: 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.mission-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: left;
    box-shadow: 0 8px 32px rgba(14, 41, 84, 0.1);
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(14, 41, 84, 0.15);
}

.mission-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 24px 0;
    color: white;
}

.mission-card .card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.mission-card .card-description {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Statistics Section */
.stats-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
}

.stat-card {
    text-align: center;
}

.stat-number {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--accent) 0%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    opacity: 0.9;
}

/* About CTA Section */
.about-cta {
    padding: 2rem 0;
    background: var(--gray-50);
    text-align: center;
}

.about-cta .cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-cta .cta-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.about-cta .cta-description {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.about-cta .cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Services Page Styles */
.modern-services-page {
    padding: 0;
}

.services-hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    overflow: hidden;
    margin-top: 0;
    padding-top: 30px;
    padding-bottom: 0px;
}

.services-hero .hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.services-hero .hero-pattern {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.services-hero .floating-pills {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.services-hero .hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: left;
    max-width: 800px;
    margin: 0;
}

.services-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.services-hero .hero-title {
    font-family: var(--font-heading);
    font-size: 50px !important;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 12px 0;
}

.service-hero .hero-description {
    display: none !important;
}

.services-hero .title-highlight {
    background: linear-gradient(135deg, #fff 0%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-hero .hero-description {
    font-size: clamp(16px, 1.5vw, 20px);
    opacity: 0.9;
    line-height: 1.7;
    color: white;
    margin-bottom: 30px;
}

.services-hero .hero-description p {
    margin-bottom: 1rem;
    color: white;
}

.services-hero .hero-description p:last-child {
    margin-bottom: 0;
}

.services-hero .hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Services Grid Section */
.services-grid-section {
    padding: 2rem 0;
    background: var(--gray-50);
}

.services-grid-section .section-header {
    text-align: center;
    margin-bottom: 1rem;
}

.services-grid-section .section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.services-grid-section .section-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.premium-card {
    text-align: left;
    align-items: flex-start;
    justify-content: flex-start;
}

.premium-icon-section {
    margin: 0 auto 24px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 0px;
}

.premium-card-title {
    text-align: left;
    font-size: clamp(1.25rem, 2.2vw, 1.5rem);
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 16px 0;
    line-height: 1.3;
    transition: color 0.4s ease;
    letter-spacing: -0.015em;
    flex-shrink: 0;
}

.premium-card:hover .premium-card-title {
    color: #6ac8c6;
}

.premium-card-text {
    text-align: left;
    font-size: clamp(0.9375rem, 1.6vw, 1rem);
    color: #64748b;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(14, 41, 84, 0.1);
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(14, 41, 84, 0.15);
}

.service-card .service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card .service-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card .placeholder-icon {
    color: white;
    opacity: 0.8;
}

.service-card .service-overlay {
    position: absolute;
    inset: 0;
    background: rgba(27, 90, 122, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-card .service-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.service-card .service-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.service-card .service-content {
    padding: 32px;
    text-align: center;
}

.service-card .service-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.service-card .icon-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    border-radius: 20px;
    opacity: 0.1;
}

.service-card .service-icon-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--brand-primary);
}

.service-card .service-icon-svg svg {
    width: 40px;
    height: 40px;
    fill: currentColor;
    stroke: currentColor;
}

.service-card .service-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.service-card .service-description {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card .service-actions {
    display: flex;
    justify-content: center;
}

.service-card .btn-service {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-card .btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 90, 122, 0.3);
}

/* No Services State */
.no-services {
    text-align: center;
    padding: 1.5rem 20px;
    color: var(--gray-600);
}

.no-services-icon {
    margin-bottom: 24px;
    color: var(--gray-400);
}

.no-services h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 16px;
}

/* Services CTA Section */
.services-cta {
    padding: 2rem 0;
    background: var(--gray-50);
    text-align: center;
}

.services-cta .cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.services-cta .cta-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.services-cta .cta-description {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.services-cta .cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Single Service Page Styles */
.modern-single-service-page {
    padding: 0;
}

.service-hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    overflow: hidden;
    margin-top: 0;
    padding-top: 100px;
    padding-bottom: 60px;
}

.service-hero .hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.service-hero .hero-pattern {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.service-hero .floating-pills {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.service-hero .hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: left;
    max-width: 800px;
    margin: 0;
}

.service-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.service-hero .hero-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
}

.service-hero .hero-description {
    display: none !important;
}

.service-hero .hero-description p {
    display: none !important;
}

.service-hero .hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Service Content Section */
.service-content-section {
    padding: 2rem 0;
    background: var(--gray-50);
}

.service-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: start;
}

.service-main-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-content-card,
.service-features-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(14, 41, 84, 0.1);
    border: 1px solid var(--gray-200);
}

.service-content-card .content-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.service-content-card .service-icon {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.service-content-card .icon-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    border-radius: 15px;
    opacity: 0.1;
}

.service-content-card .service-icon-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--brand-primary);
}

.service-content-card .service-icon-svg svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
    stroke: currentColor;
}

.service-content-card .content-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
}

.service-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
}

.service-description p {
    margin-bottom: 1rem;
}

.service-description p:last-child {
    margin-bottom: 0;
}

.service-features-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 24px;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: var(--brand-secondary);
    flex-shrink: 0;
}

.feature-item span {
    font-size: 16px;
    color: var(--gray-700);
}

/* Service Sidebar */
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-image-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(14, 41, 84, 0.1);
    border: 1px solid var(--gray-200);
}

.service-image-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-info-card,
.contact-cta-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(14, 41, 84, 0.1);
    border: 1px solid var(--gray-200);
}

.service-info-card h3,
.contact-cta-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.info-icon {
    width: 24px;
    height: 24px;
    color: var(--brand-primary);
    flex-shrink: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 500;
}

.info-value {
    font-size: 16px;
    color: var(--gray-900);
    font-weight: 600;
}

.contact-cta-card p {
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.6;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 90, 122, 0.3);
}

/* Related Services Section */
.related-services-section {
    padding: 2rem 0;
    background: white;
}

.related-services-section .section-header {
    text-align: center;
    margin-bottom: 1rem;
}

.related-services-section .section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.related-services-section .section-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.related-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.related-service-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(14, 41, 84, 0.1);
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
}

.related-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(14, 41, 84, 0.15);
}

.related-service-card .service-icon {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.related-service-card .icon-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    border-radius: 15px;
    opacity: 0.1;
}

.related-service-card .service-icon-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--brand-primary);
}

.related-service-card .service-icon-svg svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
    stroke: currentColor;
}

.related-service-card .service-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.related-service-card .service-description {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
}

.related-service-card .service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.related-service-card .service-link:hover {
    color: var(--brand-secondary);
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service-content-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
	.news-grid-section {
		    padding: 10px 0;
	}
    
    .service-sidebar {
        order: -1;
    }

    .services-hero {
        min-height: 11vh !important;
        padding-top: 30px !important;
        padding-bottom: 2px !important;
        height: 110px;
    }

    .services-hero .hero-title {
        font-size: 30px !important;
    }

    .premium-card {
        height: 300px;
        text-align: left;
        align-items: flex-start;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .services-hero .hero-actions,
    .service-hero .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .services-hero .hero-content {
        padding: 1.5rem 1rem;
        padding-left: 0px;
        padding-top: 10px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .related-services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-content-card,
    .service-features-card,
    .service-info-card,
    .contact-cta-card {
        padding: 24px;
    }
}

/* Contact Page Styles */
.modern-contact-page {
    padding: 0;
}

.contact-hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    overflow: hidden;
    margin-top: 0;
    padding-top: 30px;
    padding-bottom: 0px;
}

.contact-hero .hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.contact-hero .hero-pattern {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.contact-hero .floating-pills {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.contact-hero .hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: left;
    max-width: 800px;
    margin: 0;
}

.contact-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 600;
}

.contact-hero .hero-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 12px 0;
    padding: 4px 0;
}

.contact-hero .title-highlight {
    background: linear-gradient(135deg, #fff 0%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 660px) {
    .contact-hero {
        padding-top: 25px;
        padding-bottom: 0px;
    }
    .hero-badge-modern {
        text-align: left;
    }
    .contact-item {
        display: block;
    }
    .hero-title-revolutionary {
        text-align: left;
    font-size: 30px !important;
    }
    .hero-description-modern {
        text-align: left;
        font-size: 17px !important;
    }
    .hero-description {
        margin: 0 auto 15px!important;
    }

    .careers-hero .hero-content {
        width: 100%;
    }
    .career-advantages-section {
        padding: 10px 0;
    }
}

.contact-hero .hero-description {
    font-size: clamp(16px, 1.5vw, 20px);
    opacity: 0.9;
    line-height: 1.7;
}

.hero-description {
    font-size: clamp(16px, 1.5vw, 20px);
    opacity: 0.9;
    line-height: 1.6;
    margin: 0 auto 30px;
}

/* Contact Info Section */
.contact-info {
    padding: 1.5rem 0;
    background: var(--gray-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    text-align: left;
    box-shadow: 0 8px 32px rgba(14, 41, 84, 0.1);
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(14, 41, 84, 0.15);
}

.contact-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 24px;
    color: white;
}

.contact-card .card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.contact-card .card-description {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.contact-card .card-subtitle {
    font-size: 14px;
    color: var(--gray-600);
}

/* Contact Form Section */
.contact-form-section {
    padding: 1.5rem 0;
    background: white;
}

.form-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

.form-header {
    text-align: left;
    margin-bottom: 1.5rem;
}

.pharmacovigilance-form-section .form-header {
    text-align: left;
}

.form-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.form-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.6;
}

.contact-form-container {
    background: white;
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(14, 41, 84, 0.1);
    border: 1px solid var(--gray-200);
}

.modern-contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14, 41, 84, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}
.shop-hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    overflow: hidden;
    margin-top: 0;
    padding-top: 30px;
    padding-bottom: 0px;
}

.shop-hero .hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.shop-hero .hero-pattern {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.shop-hero .hero-pills,
.shop-hero .floating-pills {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shop-hero .hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: left;
    max-width: 800px;
    margin: 0;
}

.shop-hero .hero-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
}

.shop-hero .title-highlight {
    background: linear-gradient(135deg, #fff 0%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 660px) {
    .shop-hero {
        padding-top: 25px;
        padding-bottom: 0px;
    }
}

.clear-filters-btn {
    padding: 0px !important;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-weight: 500;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
}

.privacy-link {
    color: var(--primary);
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

.submit-btn {
    align-self: flex-start;
    margin-top: 16px;
}

/* Map Section */
.map-section {
    padding: 1.5rem 0;
    background: var(--gray-50);
}

.map-header {
    text-align: left;
    margin-bottom: 1.5rem;
}

.map-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.map-subtitle {
    font-size: 18px;
    color: var(--gray-600);
}

.map-container {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(14, 41, 84, 0.1);
    border: 1px solid var(--gray-200);
}

.map-placeholder {
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    color: white;
    text-align: center;
}

.map-icon {
    margin-bottom: 24px;
    opacity: 0.8;
}

.map-placeholder h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.map-placeholder p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 24px;
}

/* FAQ Section */
.faq-section {
    padding: 2rem 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.faq-item {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 32px rgba(14, 41, 84, 0.1);
}

.faq-question {
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: var(--gray-50);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 24px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Pharmacovigilance Page Styles */
.modern-pharmacovigilance-page {
    padding: 0;
}

.pharmacovigilance-hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    overflow: hidden;
    margin-top: 0px;
    padding-top: 30px;
    padding-bottom: 0px;
}

.pharmacovigilance-hero .hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.pharmacovigilance-hero .hero-pattern {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.pharmacovigilance-hero .floating-pills {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.pharmacovigilance-hero .hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: left;
    max-width: 800px;
    margin: 0;
}

.pharmacovigilance-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 1rem;
    font-size: 14px;
    font-weight: 600;
}

.pharmacovigilance-hero .hero-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 12px 0;
}

.pharmacovigilance-hero .title-highlight {
    background: linear-gradient(135deg, #fff 0%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 660px) {
    .pharmacovigilance-hero {
        padding-top: 25px;
        padding-bottom: 0px;
    }
}

.pharmacovigilance-hero .hero-description {
    font-size: clamp(16px, 1.5vw, 20px);
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Pharmacovigilance Info Section */
.pharmacovigilance-info {
    padding: 1.5rem 0;
    background: var(--gray-50);
}

.pharmacovigilance-info .hero-description {
    text-align: left;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    text-align: left;
    box-shadow: 0 8px 32px rgba(14, 41, 84, 0.1);
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(14, 41, 84, 0.15);
}

.info-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 24px 0;
    color: white;
}

.info-card .card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.info-card .card-description {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Pharmacovigilance Form Section */
.pharmacovigilance-form-section {
    padding: 1.5rem 0;
    background: white;
}

.pharmacovigilance-form-section .form-group {
    margin-top: 15px;
}

.pharmacovigilance-form-section .form-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

.modern-pharmacovigilance-form {
    background: white;
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(14, 41, 84, 0.1);
    border: 1px solid var(--gray-200);
}

.form-section {
    margin-bottom: 11px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--gray-200);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section .section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.form-submit {
    text-align: left;
    margin-top: 10px;
}

/* PV Contact Info Section */
.pv-contact-info {
    padding: 2rem 0;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    color: white;
}

.contact-info-content {
    text-align: left;
    max-width: 800px;
    margin: 0;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 24px;
}

.contact-description {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 48px;
    line-height: 1.6;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 5px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.method-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.method-icon svg {
    width: 24px;
    height: 24px;
}

.method-info {
    flex: 1;
    text-align: left;
    min-width: 0;
}

.method-info h3 {
    font-size: 20px !important;
    font-weight: 600;
    margin-bottom: 4px;
    color: white;
}

.method-info p {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
    color: white;
    word-break: break-word;
    overflow-wrap: break-word;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pv-contact-info {
        padding: 60px 0;
    }
    
    .contact-info-content {
        padding: 0 15px;
    }
    
    .contact-title {
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .contact-description {
        font-size: 16px;
        margin-bottom: 32px;
        padding: 0 10px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container,
    .modern-pharmacovigilance-form {
        padding: 32px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        padding: 20px 16px;
        gap: 16px;
    }
    
    .method-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        background: rgba(255, 255, 255, 0.25);
    }
    
    .method-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .method-info {
        text-align: center;
        width: 100%;
    }
    
    .method-info h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .method-info p {
        font-size: 14px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .pv-contact-info {
        padding: 40px 0;
    }
    
    .contact-title {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .contact-description {
        font-size: 14px;
        margin-bottom: 24px;
        padding: 0;
    }
    
    .contact-methods {
        gap: 16px;
        padding: 0;
    }
    
    .contact-method {
        padding: 18px 14px;
        gap: 14px;
    }
    
    .method-icon {
        width: 56px;
        height: 56px;
        min-width: 56px;
    }
    
    .method-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .method-info h3 {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .method-info p {
        font-size: 13px;
    }
}

/* Print Styles */
@media print {
    .btn,
    .card {
        box-shadow: none !important;
        border: 1px solid #000 !important;
    }
}

/* ==========================================================
 * SERVICES ARCHIVE PAGE STYLES
 * ========================================================== */

/* Services Archive Styles */
.services-archive {
    padding: 40px 0;
    background: #f8f9fa;
}

.services-archive .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-header {
    text-align: center;
    margin-bottom: 0.75rem;
}

.services-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1b5a7a;
    margin-bottom: 15px;
    position: relative;
}

.services-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #022d5f, #063e7f);
    border-radius: 2px;
}

.services-header p {
    font-size: 1rem;
    color: #6c7a86;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-item {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    min-height: 400px;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Remove alternating layout since we're using grid now */

.services-archive .service-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.services-archive .service-image {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.services-archive .service-image img {
width: auto;
    height: 245px;
    object-fit: cover;
    transition: transform 0.3s 
ease;
    display: block;
    opacity: 1;
    margin: auto;
}

.services-archive .service-item:hover .service-image img {
    transform: scale(1.05);
}

.services-archive .service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #022d5f, #063e7f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
}

.services-archive .service-icon svg {
    width: 30px;
    height: 30px;
}

.services-archive .service-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1b5a7a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.services-archive .service-excerpt {
    font-size: 1rem;
    color: #6c7a86;
    line-height: 1.6;
    margin-bottom: 20px;
}

.services-archive .service-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: #6c7a86;
}

.services-archive .service-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.services-archive .service-meta .meta-item i {
    color: #1b5a7a;
}

.services-archive .service-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #022d5f 0%, #063e7f 100%);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.services-archive .service-button:hover {
    background: linear-gradient(135deg, #063e7f 0%, #022d5f 100%);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(27, 90, 122, 0.3);
}

.services-archive .service-button i {
    transition: transform 0.3s ease;
}

.services-archive .service-button:hover i {
    transform: translateX(5px);
}

/* Services Archive Responsive Design */
@media (max-width: 768px) {
    .services-archive {
        padding: 30px 0;
    }
    
    .services-archive .services-header h1 {
        font-size: 2rem;
    }
    
    .services-archive .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .services-archive .service-item {
        min-height: auto;
    }
    
    .services-archive .service-content {
        padding: 25px 20px;
    }
    
   .services-archive  .service-image {
        height: 180px;
    }
    
    .service-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .services-archive .services-header h1 {
        font-size: 1.8rem;
    }
    
    .services-archive .service-content {
        padding: 25px 15px;
    }
    
    .services-archive .service-content h2 {
        font-size: 1.4rem;
    }
    
    .services-archive .service-excerpt {
        font-size: 0.9rem;
    }
}

/* ==========================================================
 * SINGLE SERVICE PAGE STYLES
 * ========================================================== */

/* Single Service Page */
.service-single {
    padding: 0;
    background: #f8f9fa;
    min-height: auto;
    margin-top: 100px;
    padding-top: 50px;
}


.service-single .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Service Hero Section */
.service-hero {
    position: relative;
    color: #fff;
    padding-top: 30px;
    padding-bottom: 0px;    margin: 0 0 0px;
    background: linear-gradient(to bottom, rgba(0,0,0,.4), rgba(0,0,0,.6)), #1b5a7a;
    display: flex;
    align-items: center;
    border-radius: 0px;
}

.service-hero.noimg {
    background: linear-gradient(135deg, #022d5f, #063e7f);
}

.service-hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.service-icon-hero {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.service-icon-hero svg {
    width: 50px;
    height: 50px;
    color: white;
}

.service-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.service-hero .meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0.9;
    margin-bottom: 30px;
}

.service-hero .meta i {
    margin-right: 8px;
    color: #6ac8c6;
}

.service-hero .meta span {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.service-hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    border-radius: 0 0 30px 0;
}

.service-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

/* Service Main Layout */
.service-main-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 0.75rem;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
}
.main-services {
    margin-top: 0px;
}

.service-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-header {
    background: linear-gradient(135deg, #022d5f, #063e7f);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.service-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.service-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-image:hover img {
    transform: scale(1.05);
}

.service-right {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    align-self: flex-start;
}

/* Service Content */
.service-content-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.services-archive .service-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #24333e;
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 0px;
}

.service-content h2,
.service-content h3 {
    margin-top: 2em;
    margin-bottom: 1em;
    color: #1b5a7a;
}

.service-content h2 {
    font-size: 2rem;
    border-bottom: 3px solid #6ac8c6;
    padding-bottom: 10px;
}

.service-content h3 {
    font-size: 1.5rem;
}

.service-content img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 20px 0;
    box-shadow: none;
}

.service-content ul,
.service-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.service-content li {
    margin-bottom: 10px;
}

/* Service Features */
.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #022d5f, #063e7f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
}

.feature-card h4 {
    color: #1b5a7a;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.feature-card p {
    color: #6c7a86;
    line-height: 1.6;
}

/* Service Actions */
.service-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.service-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-action-btn.primary {
    background: linear-gradient(135deg, #022d5f, #063e7f);
    color: white;
}

.service-action-btn.primary:hover {
    background: linear-gradient(135deg, #164a64, #5ab3b1);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(27, 90, 122, 0.3);
}

.service-action-btn.secondary {
    background: transparent;
    color: #1b5a7a;
    border-color: #1b5a7a;
}

.service-action-btn.secondary:hover {
    background: #1b5a7a;
    color: white;
    text-decoration: none;
}

.service-action-btn i {
    transition: transform 0.3s ease;
}

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

/* Related Services */
.related-services {
    margin-top: 1rem;
    padding: 40px 0;
    background: #f8f9fa;
    border-radius: 20px;
}

.related-services h3 {
    text-align: left;
    color: #1b5a7a;
    margin-bottom: 0.75rem;
    font-size: 2rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.related-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.related-card:hover {
    transform: translateY(-5px);
}

.related-thumb {
    aspect-ratio: 16/9;
    background: #e6eef2;
    overflow: hidden;
    display: block;
}

.related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-card:hover .related-thumb img {
    transform: scale(1.05);
}

.related-body {
    padding: 25px;
}

.related-body h4 {
    margin-bottom: 15px;
}

.related-body a {
    font-weight: 700;
    color: #24333e;
    text-decoration: none;
    font-size: 1.1rem;
}

.related-body a:hover {
    color: #1b5a7a;
}

.related-meta {
    color: #6c7a86;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Single Service Responsive Design */
@media (max-width: 768px) {
    .service-main-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-header {
        padding: 30px 20px;
    }
    
    .service-header h1 {
        font-size: 2rem;
    }
    
    .service-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .service-right {
        padding: 30px 20px;
    }
    
    .service-content {
        padding: 30px 20px;
        font-size: 1rem;
    }
    
    .service-content h2 {
        font-size: 1.5rem;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
    }
    
    .service-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .service-action-btn {
        justify-content: center;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .service-hero {
        padding: 15px 0;
    }
    
    .service-hero h1 {
        font-size: 2rem;
    }
    
    .service-content {
        padding: 20px 15px;
    }
    
    .feature-card {
        padding: 20px;
    }
}

/* ==========================================================
 * SERVICES HOME SECTION STYLES (Below Header)
 * ========================================================== */

/* Services Home Section - Same structure as news */
.services-home {
    padding: 20px 0 40px 0;
    background: #f8f9fa;
}

.services-home {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card-home {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    min-height: 350px;
}

.service-card-home:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.service-image-home {
    width: 100%;
    height: 180px;
    position: relative;
    overflow: hidden;
}

.service-content-home {
    flex: 1;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-image-home img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card-home:hover .service-image-home img {
    transform: scale(1.05);
}

.service-icon-home {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #022d5f, #063e7f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
}

.service-icon-home svg {
    width: 30px;
    height: 30px;
}

.services-home h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1b5a7a;
    margin-bottom: 10px;
    line-height: 1.2;
}

.services-home h4 {
    font-size: 0.85rem;
    color: #6c7a86;
    line-height: 1.4;
    margin-bottom: 12px;
}

.services-home button {
    background: linear-gradient(135deg, #022d5f, #063e7f);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 18px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.services-home button:hover {
    background: linear-gradient(135deg, #164a64, #5ab3b1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(27, 90, 122, 0.3);
}

/* Services Home Responsive Design */
@media (max-width: 768px) {
    .services-home {
        padding: 15px 0 30px 0;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card-home {
        min-height: auto;
        margin-bottom: 15px;
    }
    
    .service-content-home {
        padding: 20px 15px;
    }
    
    .service-image-home {
        height: 160px;
    }
    
    .services-home h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .services-home {
        padding: 10px 0 25px 0;
    }
    
    .service-content-home {
        padding: 18px 12px;
    }
    
    .service-image-home {
        height: 140px;
    }
    
    .services-home h3 {
        font-size: 1.1rem;
    }
    
    .services-home h4 {
        font-size: 0.8rem;
    }
}

/* ==========================================================
 * LUXURIOUS MODERN SINGLE PRODUCT STYLES
 * ========================================================== */

/* Main Container */
.single-prod {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    padding: 0px 0;
    padding-bottom: 0px;
}

/* Product Cards */
.sp-card {
    background: #ffffff;
    border: 1px solid rgba(27, 90, 122, 0.1);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(27, 90, 122, 0.08);
    transition: all 0.4s ease;
}

.sp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(27, 90, 122, 0.15);
}

/* Gallery Styling */
.sp-gallery {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.swiper-main {
    border-radius: 20px;
    overflow: hidden;
}

.swiper-main .swiper-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.swiper-main:hover .swiper-slide img {
    transform: scale(1.05);
}

.swiper-button-next,
.swiper-button-prev {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: #1b5a7a;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #1b5a7a;
    color: white;
    transform: scale(1.1);
}

/* Summary Card */
.sp-summary {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid rgba(27, 90, 122, 0.1);
    border-radius: 25px;
    box-shadow: 0 25px 70px rgba(27, 90, 122, 0.1);
    padding: 40px;
}

/* Product Title */
.sp-summary .product_title {
    color: #1b5a7a;
    font-size: 25px!important;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Price Styling */
.sp-price .price {
    background: #022d5f; /* Fallback for older browsers */
    background: linear-gradient(135deg, #022d5f 0%, #063e7f 100%);
    color: white;
    padding: 0px 15px;
    padding-top: 5px;
    border-radius: 20px;
    font-size: 20px!important;
    font-weight: 800;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(27, 90, 122, 0.3);
    margin-bottom: 25px;

}

.sp-price .price del {
    opacity: 0.7;
    color: rgba(255, 255, 255, 0.8);
}

.sp-chip {
    padding: 0px 15px;
    padding-top: 5px;
}
/* Rating Stars */
.sp-stars {
    margin-bottom: 20px;
}

.sp-stars i.fas.fa-star,
.sp-stars i.fas.fa-star-half-alt {
    color: #f4b400;
    font-size: 1.2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.sp-stars i.far.fa-star {
    color: #d9dee3;
    font-size: 1.2rem;
}

/* Excerpt */
.sp-excerpt {
    color: #6c7a86;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* KPI Chips */
.sp-kpis {
    margin-bottom: 30px;
}

.sp-chip {
    background: linear-gradient(135deg, rgba(27, 90, 122, 0.1) 0%, rgba(106, 200, 198, 0.1) 100%);
    border: 2px solid rgba(27, 90, 122, 0.2);
    color: #1b5a7a;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.sp-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 90, 122, 0.2);
}

/* Share Buttons */
.sp-share-btn {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #022d5f 0%, #063e7f 100%);
    color: white;
    border: none;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(27, 90, 122, 0.3);
}

.sp-share-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 15px 40px rgba(27, 90, 122, 0.4);
    color: white;
}

/* Add to Cart */
.sp-purchase form.cart {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.sp-purchase .quantity {
    width: 100%;
    max-width: 140px;
}

.sp-purchase .quantity .qty {
    width: 100px;
    height: 50px;
    border: 2px solid rgba(27, 90, 122, 0.2);
    border-radius: 15px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    background: rgba(27, 90, 122, 0.05);
    transition: all 0.3s ease;
}

.sp-purchase .quantity .qty:focus {
    border-color: #1b5a7a;
    box-shadow: 0 0 0 3px rgba(27, 90, 122, 0.1);
    outline: none;
}

.sp-purchase .single_add_to_cart_button {
    background: #022d5f; /* Fallback for older browsers */
    background: linear-gradient(135deg, #022d5f 0%, #063e7f 100%);
    color: white;
    border: none;
    border-radius: 15px;
    padding: 15px 30px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(27, 90, 122, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sp-purchase .single_add_to_cart_button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(27, 90, 122, 0.4);
    color: white;
}

/* Product Meta - Modern Design */
.sp-summary .product_meta {
    background: linear-gradient(135deg, rgba(27, 90, 122, 0.05) 0%, rgba(106, 200, 198, 0.05) 100%);
    padding: 25px;
    border-radius: 20px;
    border: 2px solid rgba(27, 90, 122, 0.1);
    margin-top: 20px;
    backdrop-filter: blur(10px);
}

.sp-summary .product_meta > span {
    display: inline-block;
    margin: 8px 10px 8px 0;
    padding: 12px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: #1b5a7a;
    border: 2px solid rgba(27, 90, 122, 0.15);
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(27, 90, 122, 0.1);
    position: relative;
    overflow: hidden;
}

.sp-summary .product_meta > span::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #022d5f 0%, #063e7f 100%);
    transition: left 0.4s ease;
    z-index: -1;
}



.sp-summary .product_meta > span:hover::before {
    left: 0;
}

.sp-summary .product_meta a {
    display: inline-block;
    color: #1b5a7a;
    font-weight: 700;
    font-size: 0.95rem;

    transition: all 0.4s ease;

}

.sp-summary .product_meta a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.4s ease;
    z-index: -1;
}

.sp-summary .product_meta a:hover {

    text-decoration: none;
}

.sp-summary .product_meta a:hover::before {
    left: 0;
}

/* Product Meta Labels */
.sp-summary .product_meta .sku_wrapper,
.sp-summary .product_meta .posted_in,
.sp-summary .product_meta .tagged_as {
    display: block;
    margin-bottom: 15px;
}

.sp-summary .product_meta .sku_wrapper strong,
.sp-summary .product_meta .posted_in strong,
.sp-summary .product_meta .tagged_as strong {
    color: #1b5a7a;
    font-weight: 800;
    font-size: 1rem;
    margin-right: 10px;
    display: inline-block;
}

/* Tabs Styling */
.woocommerce-tabs {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(27, 90, 122, 0.08);
}

.woocommerce-tabs .wc-tabs {
    display: flex;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: 2px solid rgba(27, 90, 122, 0.1);
}

.woocommerce-tabs .wc-tabs li {
    margin: 0;
    flex: 1;
}

.woocommerce-tabs .wc-tabs a {
    display: block;
    padding: 20px 25px;
    font-weight: 700;
    text-decoration: none;
    color: #6c7a86;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1rem;
}

.woocommerce-tabs .wc-tabs li.active a,
.woocommerce-tabs .wc-tabs a:hover {
    background: linear-gradient(135deg, #022d5f 0%, #063e7f 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(27, 90, 122, 0.3);
}

.woocommerce-Tabs-panel {
    display: none;
    padding: 40px;
    background: white;
    border-radius: 0 0 20px 20px;
}

.woocommerce-Tabs-panel h2 {
display: none;
}
.single-prod.py-4 {
    padding-top: 0rem !important;
    padding-bottom: 0px !important;
}
.wc-block-cart-item__total {
    position: absolute !important;
    top: 10% !important;
    z-index: 1 !important;
    right: 0 !important;
    background: linear-gradient(135deg, #022d5f 0%, #063e7f 100%) !important;
    width: max-content !important;
    color: white !important;
    border-radius: 12px !important;
}


/* ==========================================================
 * RELATED PRODUCTS LUXURIOUS STYLING
 * ========================================================== */

.related-products-section {
display: none;
}
.woocommerce-NoticeGroup-checkout .error {
    display: none !important;
}

.wp-block-woocommerce-cart {
background: white!important;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.related-title {
    text-align: center;
    color: #1b5a7a;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.single-prod .type-product {
    background-color: white;
}

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

.related-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(27, 90, 122, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.related-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(27, 90, 122, 0.2);
}

.related-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.related-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.related-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.related-card:hover .related-actions {
    opacity: 1;
    transform: translateX(0);
}

.related-wishlist,
.related-quick-view {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1b5a7a;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.related-wishlist:hover,
.related-quick-view:hover {
    background: #1b5a7a;
    color: white;
    transform: scale(1.1);
}

.related-content {
    padding: 25px;
    text-align: center;
}

.related-product-title {
    margin-bottom: 15px;
}

.related-product-title a {
    color: #1b5a7a;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.related-product-title a:hover {
    color: #6ac8c6;
}

.related-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1b5a7a;
    margin-bottom: 15px;
}

.related-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.related-rating .sp-stars i {
    font-size: 1rem;
}

.rating-count {
    font-size: 0.9rem;
    color: #6c7a86;
}

.related-add-to-cart {
    margin-top: 20px;
}

.related-add-btn,
.related-view-btn {
    background: #022d5f; /* Fallback for older browsers */
    background: linear-gradient(135deg, #022d5f 0%, #063e7f 100%);
    color: white;
    border: none;
    border-radius: 15px;
    padding: 12px 25px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(27, 90, 122, 0.3);
    cursor: pointer;
}

.related-add-btn:hover,
.related-view-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(27, 90, 122, 0.4);
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .sp-summary {
        padding: 30px;
    }
    
    .sp-summary .product_title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sp-summary {
        padding: 25px;
    }
    
    .sp-summary .product_title {
        font-size: 1.8rem;
    }
    
    .sp-purchase form.cart {
        flex-direction: column;
        align-items: stretch;
    }
    
    .sp-purchase .single_add_to_cart_button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .single-prod {
        padding: 20px 0;
    }
    
    .sp-card {
        margin: 0 10px;
    }
    
    .sp-summary {
        padding: 20px;
    }
    
    .sp-summary .product_title {
        font-size: 1.5rem;
    }
    
    .related-title {
        font-size: 1.8rem;
    }
}

/* GLOBAL POPPINS FONT SETTINGS */
* {
      font-family: 'Overpass', sans-serif;

}

body {
      font-family: 'Overpass', sans-serif;

}

h1, h2, h3, h4, h5, h6 {
      font-family: 'Overpass', sans-serif;

}

p, span, div, a, button, input, textarea, select, label, li, ul, ol {
      font-family: 'Overpass', sans-serif;

}

/* WooCommerce Elements */
.woocommerce, .woocommerce-page {
     font-family: 'Overpass', sans-serif;

}

.woocommerce h1, .woocommerce h2, .woocommerce h3, .woocommerce h4, .woocommerce h5, .woocommerce h6,
.woocommerce p, .woocommerce span, .woocommerce div, .woocommerce a, .woocommerce button {
      font-family: 'Overpass', sans-serif;

}

/* WordPress Elements */
.wp-block, .wp-block-heading, .wp-block-paragraph {
    font-family: 'Overpass', sans-serif;

}

/* Additional Elements */
.navbar, .navbar-nav, .nav-link, .dropdown-menu, .dropdown-item {
     font-family: 'Overpass', sans-serif;

}

/* Form Elements */
.form-control, .form-select, .btn, .form-label, .form-text {
      font-family: 'Overpass', sans-serif;

}

/* Slick Slider */
.slick-slide, .slick-dots, .slick-arrow {
      font-family: 'Overpass', sans-serif;

}

.slick-dotted.slick-slider {
    margin-bottom: 0px !important;
}

/* MAHNITËS SERVICES SLIDER SECTION */
.mahnites-services-section {
    position: relative;
    padding: 2rem 0;
    background: white!important;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.mahnites-services-section .badge-icon-wrapper i {
    font-size: 12px !important;
    color: #fff !important;
}
/* Animated Background */
.services-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(106, 200, 198, 0.1), rgba(27, 90, 122, 0.1));
    animation: floatShapes 20s infinite linear;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 15%;
    animation-delay: -5s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 20%;
    animation-delay: -10s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    right: 25%;
    animation-delay: -15s;
}

.shape-5 {
    width: 140px;
    height: 140px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -8s;
}

@keyframes floatShapes {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-40px) rotate(180deg);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-20px) rotate(270deg);
        opacity: 0.7;
    }
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(106, 200, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(27, 90, 122, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(106, 200, 198, 0.05) 0%, transparent 70%);
    animation: gradientPulse 15s ease-in-out infinite;
}

@keyframes gradientPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.particle-system {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Removed blue dots */
    background: none;
    animation: particleFloat 25s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.woocommerce-view-order .woocommerce-order-details, .woocommerce-view-order .woocommerce-columns--addresses {
    display: none!important;
}

.woocommerce-NoticeGroup-checkout .alert {
    display: none !important;
}

.woocommerce-NoticeGroup-checkout .error {
    display: none !important;
}

/* Optimize checkout form processing */
.woocommerce-checkout.processing {
    opacity: 1 !important;
    pointer-events: auto !important;
}

.woocommerce-checkout.processing #place_order {
    opacity: 1 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
}

/* Remove unnecessary delays */
.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout .woocommerce-message {
    display: none !important;
}

/* Hide WooCommerce block errors in cart and checkout related to insertBefore */
.wc-block-components-notice-banner.is-error,
.woocommerce-error,
.wc-block-error-message {
    position: relative;
}

/* Hide error messages containing insertBefore or proceed-to-checkout-block errors */
.wc-block-components-notice-banner.is-error:has-text("insertBefore"),
.wc-block-components-notice-banner.is-error:has-text("Unexpected error"),
.wc-block-components-notice-banner.is-error:has-text("proceed-to-checkout-block"),
.woocommerce-error:has-text("insertBefore"),
.woocommerce-error:has-text("Unexpected error"),
.woocommerce-error:has-text("proceed-to-checkout-block"),
.wc-block-error-message:has-text("insertBefore"),
.wc-block-error-message:has-text("Unexpected error"),
.wc-block-error-message:has-text("proceed-to-checkout-block") {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
}

/* Additional selector for error messages in cart/checkout */
.woocommerce-cart .wc-block-components-notice-banner.is-error,
.woocommerce-checkout .wc-block-components-notice-banner.is-error,
.wp-block-woocommerce-cart .wc-block-components-notice-banner.is-error {
    display: none !important;
}

/* WooCommerce Message Wrapper - Inside Container */
.woocommerce-message-wrapper {
    width: 100% !important;
    background: transparent;
    border-bottom: none !important;
    padding: 0px 0;
    margin: 0 !important;
    position: relative;
    z-index: 1000;
    box-sizing: border-box;
    clear: both;
    overflow: hidden;
}

.woocommerce-message-wrapper .container {
    max-width: 1200px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 var(--spacing-lg, 15px) !important;
    box-sizing: border-box;
}



.woocommerce-message-wrapper .woocommerce-info,
.woocommerce-message-wrapper .woocommerce-message {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    color: #155724 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 15px !important;
    flex-wrap: wrap !important;
}

.woocommerce-message-wrapper .woocommerce-info:focus,
.woocommerce-message-wrapper .woocommerce-info:focus-visible,
.woocommerce-message-wrapper .woocommerce-message:focus,
.woocommerce-message-wrapper .woocommerce-message:focus-visible {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.woocommerce-message-wrapper .woocommerce-info::before,
.woocommerce-message-wrapper .woocommerce-message::before {
    content: "✓" !important;
    background: #28a745 !important;
    color: white !important;
    width: 24px !important;
    height: 24px !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    font-weight: bold !important;
    margin-right: 10px !important;
    flex-shrink: 0 !important;
}

.woocommerce-message-wrapper .woocommerce-info a,
.woocommerce-message-wrapper .woocommerce-message a {
    background: #063e7f !important;
    color: white !important;
    padding: 8px 20px !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
    margin-left: auto !important;
    text-align: center;
    max-width: max-content;
    margin: 10px;
}

.woocommerce-message-wrapper .woocommerce-info a:hover,
.woocommerce-message-wrapper .woocommerce-message a:hover {
    background: #052d5c !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 8px rgba(6, 62, 127, 0.3) !important;
}

/* Block Notices Styling */
.woocommerce-message-wrapper .wc-block-components-notice-banner {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 15px !important;
    flex-wrap: wrap !important;
}

.woocommerce-message-wrapper .wc-block-components-notice-banner svg {
    fill: #28a745 !important;
    flex-shrink: 0 !important;
}

.woocommerce-message-wrapper .wc-block-components-notice-banner__content {
    color: #155724 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    flex: 1 !important;
}

.woocommerce-message-wrapper .wc-block-components-notice-banner__content a {
    background: #007bff !important;
    color: white !important;
    padding: 8px 20px !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
    margin-left: auto !important;
    display: inline-block !important;
}

.woocommerce-message-wrapper .wc-block-components-notice-banner__content a:hover {
    background: #0056b3 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .woocommerce-message-wrapper {
        padding: 0px 0 !important;
    }
    
    .woocommerce-message-wrapper .container {
        padding: 0 12px !important;
    }

    
    .content-card {
        padding: 10px;
    }

    .card-content {
        padding: 0;
        padding-top: 20px;
    }
    
    .woocommerce-message-wrapper .woocommerce-info,
    .woocommerce-message-wrapper .woocommerce-message,
    .woocommerce-message-wrapper .wc-block-components-notice-banner {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
        width: 100% !important;
    }
    
    .woocommerce-message-wrapper .woocommerce-info,
    .woocommerce-message-wrapper .woocommerce-message {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }
    
    .woocommerce-message-wrapper .woocommerce-info::before,
    .woocommerce-message-wrapper .woocommerce-message::before {
        width: 20px !important;
        height: 20px !important;
        font-size: 12px !important;
        margin-right: 8px !important;
    }
    
    .woocommerce-message-wrapper .woocommerce-info a,
    .woocommerce-message-wrapper .woocommerce-message a,
    .woocommerce-message-wrapper .wc-block-components-notice-banner__content a {
        margin-left: 0 !important;
        width: 100% !important;
        text-align: center !important;
        padding: 10px 16px !important;
        font-size: 13px !important;
        display: block !important;
        margin-top: 4px !important;
    }
    
    .woocommerce-message-wrapper .wc-block-components-notice-banner {
        width: 100% !important;
    }
    
    .woocommerce-message-wrapper .wc-block-components-notice-banner svg {
        width: 20px !important;
        height: 20px !important;
        flex-shrink: 0 !important;
    }
    
    .woocommerce-message-wrapper .wc-block-components-notice-banner__content {
        font-size: 14px !important;
        line-height: 1.5 !important;
        width: 100% !important;
    }
    
    .woocommerce-message-wrapper .wc-block-components-notice-banner__content a {
        margin-top: 8px !important;
    }
}

@media (max-width: 480px) {
    .woocommerce-message-wrapper {
        padding: 10px 0 !important;
    }
    
    .woocommerce-message-wrapper .container {
        padding: 0 10px !important;
    }
    
    .woocommerce-message-wrapper .woocommerce-info,
    .woocommerce-message-wrapper .woocommerce-message {
        font-size: 13px !important;
        gap: 8px !important;
    }
    
    .woocommerce-message-wrapper .woocommerce-info a,
    .woocommerce-message-wrapper .woocommerce-message a,
    .woocommerce-message-wrapper .wc-block-components-notice-banner__content a {
        padding: 8px 14px !important;
        font-size: 12px !important;
    }
    
    .woocommerce-message-wrapper .wc-block-components-notice-banner__content {
        font-size: 13px !important;
    }
}

/* Ensure form fields are always interactive */
.woocommerce-checkout input,
.woocommerce-checkout select,
.woocommerce-checkout textarea,
.woocommerce-checkout button {
    pointer-events: auto !important;
    opacity: 1 !important;
	border: 2px solid #e5e7eb !important;
    border-radius: 12px;
    padding: 10px;
}

/* Section Header */
.services-header-mahnites {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}
.woocommerce-order-received .woocommerce-order-details, .woocommerce-order-received .woocommerce-customer-details {
    display: none;
}

.woocommerce-order-received .btn-outline-secondary {
background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4), 0 4px 8px rgba(0, 0, 0, 0.15);
    COLOR: WHITE;
}

.woocommerce-order-received  .btn-outline-primary {
      background: black;
    border: black;
    color: white;  
 }

 .woocommerce-order-received  .woocommerce p {
    display: none;
 }

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #022d5f 0%, #063e7f 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(106, 200, 198, 0.4);
    animation: badgeEntrance 1s ease-out;
}

.badge-icon-wrapper {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: badgeGlow 3s infinite;
}


@keyframes badgeEntrance {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

#home-slider .slick-dots {
	display:none!important;
}
.services-title-mahnites {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin: 0 0 30px 0;
    line-height: 1.1;
    position: relative;
    animation: titleEntrance 1s ease-out 0.3s both;
}

.title-line-1 {
    display: block;
    background: linear-gradient(135deg, #063e7f 0%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ufarm-header .hamburger-line {
	display:none;
}
.title-highlight {
	background:linear-gradient(135deg, #6ac8c6 0%, #fff 100%);
	-webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line-2 {
    display: block;
    background: linear-gradient(135deg, #022d5f 0%, #063e7f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-subtitle-mahnites {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    animation: subtitleEntrance 1s ease-out 0.6s both;
}

@keyframes titleEntrance {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes subtitleEntrance {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slider Wrapper */
.services-slider-wrapper {
    position: relative;
    z-index: 2;
    margin: 0 -20px;
}

.slider-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 3;
    pointer-events: none;
}

.slider-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    pointer-events: all;
    position: relative;
    overflow: hidden;
}

.slider-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #022d5f 0%, #063e7f 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-btn:hover {
    transform: scale(1.1);
    box-shadow: none;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%)!important;
    color: white;
}

.slider-btn:hover::before {
    opacity: 1;
    color: white;
}

.prev-btn {
    margin-left: -30px;
}

.next-btn {
    margin-right: -30px;
}

/* Services Slider */
.services-slider-mahnites {
    position: relative;
    overflow: hidden;
}

.service-slide-mahnites {
    padding: 0 20px;
}

#home-slider {
    padding: 0!important;
}

.slide-content {
    margin-top: 10%;
    padding-top: 30px;
        padding-bottom: 30px;
}
.hero::before {
    position: relative;
}
.slide-cta {
    border:none!important;
}

.service-card-mahnites {
    background: linear-gradient(135deg, #022d5f 0%, #063e7f 100%);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    height: 420px;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.card-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(106, 200, 198, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.service-card-mahnites:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: none;
        background: #4898a5 !important;
}

.service-card-mahnites:hover .card-glow {
    opacity: 1;
}

/* Service Image */
.service-image-mahnites {
    height: 120px !important;
    width: 100% !important;
    margin: auto;
    background: white;
    position: relative;
    overflow: hidden;
    z-index: 2;
    padding-top: 10px;
}
/*
.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9) contrast(1.1);
}
*/
.service-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #063e7f 0%, #022d5f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-mahnites:hover .service-img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.service-card-mahnites:hover .image-overlay {
    opacity: 1;
}

/* Service Content */
.service-content-mahnites {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.service-icon-mahnites {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #063e7f 0%, #022d5f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 20px;
    box-shadow: none;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-mahnites:hover .service-icon-mahnites {
    transform: scale(1.1) rotate(10deg);
    box-shadow: none;
}

.service-title-mahnites {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin: 0 0 15px 0;
    line-height: 1.2;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-mahnites:hover .service-title-mahnites {
    color: #6ac8c6;
    transform: translateY(-5px);
}

.service-description-mahnites {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex: 1;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-mahnites:hover .service-description-mahnites {
    color: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
}

.service-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(106, 200, 198, 0.2);
    color: #6ac8c6;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(106, 200, 198, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-mahnites:hover .feature-tag {
    background: rgba(106, 200, 198, 0.3);
    border-color: rgba(106, 200, 198, 0.5);
    transform: translateY(-2px);
}

/* Hover Effects */
.card-hover-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hover-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(106, 200, 198, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Removed blue dots */
    background: none;
    opacity: 0;
    animation: particleFloat 3s linear infinite;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-mahnites:hover .hover-glow {
    opacity: 1;
}

.service-card-mahnites:hover .hover-particles {
    opacity: 1;
}

/* Slider Dots */
.slider-dots-mahnites {
    text-align: center;
    margin-top: 0.75rem;
    position: relative;
    z-index: 2;
}

.slider-dots-mahnites .slick-dots {
    position: static;
    display: inline-flex;
    gap: 15px;
    transform: none;
}

.slider-dots-mahnites .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}

.slider-dots-mahnites .slick-dots li button {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(106, 200, 198, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.slider-dots-mahnites .slick-dots li button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #063e7f 0%, #022d5f 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-dots-mahnites .slick-dots li.slick-active button {
    background: rgba(106, 200, 198, 0.8);
    border-color: #6ac8c6;
    transform: scale(1.2);
}

.slider-dots-mahnites .slick-dots li.slick-active button::before {
    opacity: 1;
}

.slider-dots-mahnites .slick-dots li button:hover {
    background: rgba(106, 200, 198, 0.6);
    transform: scale(1.1);
}

/* CTA Button */
.services-cta-mahnites {
    text-align: center;
    margin-top: 1.5rem;
    position: relative;
    z-index: 2;
}

.cta-btn-mahnites {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #022d5f 0%, #063e7f 100%);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(106, 200, 198, 0.4);
    border: none;
}


.cta-btn-mahnites:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 60px rgba(106, 200, 198, 0.6);
    text-decoration: none;
    color: white;
}


.btn-icon {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-btn-mahnites:hover .btn-icon {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-title-mahnites {
        font-size: 3.5rem;
    }
    
    .service-card-mahnites {
        height: 420px;
    }
}

@media (max-width: 768px) {
    .mahnites-services-section {
        padding: 1.5rem 0;
    }
    
    .services-title-mahnites {
        font-size: 2.5rem;
    }
    
    .services-subtitle-mahnites {
        font-size: 1.1rem;
    }
    
    .service-card-mahnites {
        height: 400px;
    }
    
    .service-content-mahnites {
        padding: 20px;
    }
    
    .service-image-mahnites {
        height: 120px !important;
        width: 100% !important;
        margin: auto;
        background: white;
        padding-top: 10px;
    }
    
    .slider-navigation {
        display: none;
    }
    
    .prev-btn, .next-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .services-title-mahnites {
        font-size: 2rem;
    }
    

}

/* LUXURY SERVICES SLIDER SECTION */
.luxury-services-slider-section {
    position: relative;
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

/* Background Elements */
.services-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.services-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Removed blue dots */
    background: none;
    animation: servicesParticleFloat 20s linear infinite;
}

.services-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(27, 90, 122, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(106, 200, 198, 0.05) 0%, transparent 50%);
    animation: servicesGradientFloat 15s ease-in-out infinite;
}

@keyframes servicesParticleFloat {
    0% { transform: translateY(0px) rotate(0deg); opacity: 0.1; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 0.3; }
    100% { transform: translateY(0px) rotate(360deg); opacity: 0.1; }
}

@keyframes servicesGradientFloat {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.3; }
    50% { transform: translateY(-10px) scale(1.05); opacity: 0.6; }
}

/* Header */
.services-slider-header {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.services-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #022d5f 0%, #063e7f 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(27, 90, 122, 0.3);
    animation: servicesBadgeEntrance 1s ease-out;
}

.badge-icon {
    font-size: 1.2rem;
}

.services-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #1a202c;
    margin: 0 0 20px 0;
    line-height: 1.1;
    animation: servicesTitleEntrance 1s ease-out 0.2s both;
}

.services-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    animation: servicesSubtitleEntrance 1s ease-out 0.4s both;
}

@keyframes servicesBadgeEntrance {
    0% { opacity: 0; transform: translateY(30px) scale(0.9); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes servicesTitleEntrance {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes servicesSubtitleEntrance {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Slider Container */
.services-slider-container {
    position: relative;
    z-index: 2;
}

.services-slider {
    margin: 0 -15px;
}

.service-slide {
    padding: 0 15px;
}

.service-card-luxury {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 420px;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform-style: preserve-3d;
    perspective: 1000px;
    animation: cardFloat 8s ease-in-out infinite;
}

.service-card-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(27, 90, 122, 0.05) 0%, rgba(106, 200, 198, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 25px;
    transform: translateZ(0);
}

.service-card-luxury::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(27, 90, 122, 0.1) 0%, 
        rgba(106, 200, 198, 0.1) 50%, 
        rgba(27, 90, 122, 0.1) 100%);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 25px;
    transform: translateZ(-1px);
    filter: blur(1px);
}

.service-card-luxury:hover {
    transform: translateY(-12px) rotateX(5deg) rotateY(2deg) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 8px 16px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.service-card-luxury:hover::before {
    opacity: 1;
    transform: translateZ(1px);
}

.service-card-luxury:hover::after {
    opacity: 1;
    transform: translateZ(-2px);
    filter: blur(2px);
}

/* Duplicate cardFloat keyframes removed - using the enhanced version above */

/* Removed service-image-luxury styles since image is removed */

.service-content-luxury {
    padding: 40px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.service-thumbnail-luxury {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px auto;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.06),
        0 0 0 2px rgba(255, 255, 255, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: thumbnailFloat 4s ease-in-out infinite;
    transform-style: preserve-3d;
    perspective: 500px;
}

.service-thumbnail-luxury::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #022d5f, #063e7f, #022d5f);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    animation: gradientRotate 3s linear infinite;
    transform: translateZ(-2px);
}

.service-thumbnail-luxury::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 50%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(1px);
}

.service-thumbnail-luxury img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.1) contrast(1.1);
    transform: translateZ(2px);
}

.service-card-luxury:hover .service-thumbnail-luxury {
    transform: scale(1.08) rotateX(8deg) rotateY(4deg) translateZ(8px);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.1),
        0 0 0 3px rgba(255, 255, 255, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.6);
}

.service-card-luxury:hover .service-thumbnail-luxury::before {
    opacity: 1;
    transform: translateZ(-4px) scale(1.1);
}

.service-card-luxury:hover .service-thumbnail-luxury::after {
    opacity: 1;
    transform: translateZ(3px);
}

.service-card-luxury:hover .service-thumbnail-luxury img {
    transform: translateZ(4px) scale(1.05);
    filter: brightness(1.3) contrast(1.3) saturate(1.3);
}

@keyframes thumbnailFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-2px) rotate(1deg); }
    50% { transform: translateY(-3px) rotate(0deg); }
    75% { transform: translateY(-2px) rotate(-1deg); }
}

@keyframes gradientRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.service-title-luxury {
    font-size: 1.6rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 15px 0;
    line-height: 1.3;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    transform: translateZ(5px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    letter-spacing: -0.02em;
}

.service-title-luxury::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #022d5f 0%, #063e7f 100%);
    border-radius: 2px;
    transform: translateX(-50%) translateZ(2px);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(27, 90, 122, 0.3);
}

.service-card-luxury:hover .service-title-luxury {
    color: #1b5a7a;
    transform: translateY(-5px) translateZ(10px);
    text-shadow: 0 4px 8px rgba(27, 90, 122, 0.2);
}

.service-card-luxury:hover .service-title-luxury::after {
    width: 60px;
    transform: translateX(-50%) translateZ(4px);
}

.service-description-luxury {
    font-size: 0.95rem;
    color: #718096;
    line-height: 1.7;
    margin: 0 0 25px 0;
    flex: 1;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(3px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
    font-weight: 400;
}

.service-card-luxury:hover .service-description-luxury {
    color: #4a5568;
    transform: translateY(-3px) translateZ(8px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Removed service-btn-luxury styles since button is removed */

/* Removed slider dots styles since dots are removed */

/* View More Button */
.services-view-more {
    text-align: center;
    margin-top: 1rem;
    position: relative;
    z-index: 2;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #063e7f 0%, #022d5f 100%);
    color: white;
    padding: 20px 40px;
    border: 2px solid transparent;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(106, 200, 198, 0.3);
}

.view-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #022d5f 0%, #063e7f 100%);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.view-more-btn:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(106, 200, 198, 0.4);
    text-decoration: none;
}

.view-more-btn:hover::before {
    left: 0;
}

.view-more-btn i {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Responsive */
@media (max-width: 1024px) {
    .services-title {
        font-size: 3rem;
    }
    
    .service-card-luxury {
        height: 450px;
    }
    
    .service-image-luxury {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .luxury-services-slider-section {
        padding: 1.5rem 0;
    }
    
    .services-title {
        font-size: 2.5rem;
    }
    
    .services-subtitle {
        font-size: 1.1rem;
    }
    
    .service-card-luxury {
        height: 400px;
    }
    
    .service-content-luxury {
        padding: 30px 20px;
    }
    
    .service-title-luxury {
        font-size: 1.6rem;
    }
}

/* LUXURY FULLSCREEN SERVICES SLIDER */
.luxury-services-fullscreen {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #022d5f 0%, #063e7f 100%);
}

/* Dynamic Background Pills */
.luxury-pills-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.luxury-pill {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    animation: luxuryPillFloat 20s linear infinite;
}

.luxury-pill-1 {
    width: 60px;
    height: 60px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.luxury-pill-3 {
    width: 40px;
    height: 40px;
    top: 60%;
    left: 20%;
    animation-delay: 6s;
    animation-duration: 20s;
}

.luxury-pill-6 {
    width: 50px;
    height: 50px;
    top: 80%;
    left: 60%;
    animation-delay: 15s;
    animation-duration: 22s;
}

.luxury-pill-7 {
    width: 90px;
    height: 90px;
    top: 30%;
    right: 5%;
    animation-delay: 18s;
    animation-duration: 32s;
}

.luxury-pill-8 {
    width: 30px;
    height: 30px;
    top: 50%;
    left: 80%;
    animation-delay: 21s;
    animation-duration: 18s;
}

@keyframes luxuryPillFloat {
    0% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.1;
    }
    25% {
        transform: translateY(-30px) translateX(20px) rotate(90deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-60px) translateX(0px) rotate(180deg);
        opacity: 0.2;
    }
    75% {
        transform: translateY(-30px) translateX(-20px) rotate(270deg);
        opacity: 0.3;
    }
    100% {
        transform: translateY(0px) translateX(0px) rotate(360deg);
        opacity: 0.1;
    }
}

/* Animated Background */
.luxury-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
    animation: luxuryBgFloat 15s ease-in-out infinite;
    z-index: 1;
}

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

/* Fullscreen Slider */
.luxury-fullscreen-slider {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.luxury-slide {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-color, #1b5a7a);
    overflow: hidden;
}

.luxury-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-color, #022d5f) 0%, var(--accent-color, #063e7f) 100%);
    opacity: 0.9;
}

.luxury-slide-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    padding: 0 40px;
}

.luxury-slide-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.luxury-slide-icon {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: luxuryIconFloat 6s ease-in-out infinite;
}

.luxury-slide-image {
    width: 80%;
    height: 80%;
    object-fit: contain;
    border-radius: 50%;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

@keyframes luxuryIconFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
    }
    50% { 
        transform: translateY(-20px) scale(1.05);
    }
}

.luxury-slide-right {
    color: white;
    text-align: left;
}

.luxury-slide-title {
    font-size: 4rem;
    font-weight: 900;
    margin: 0 0 30px 0;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: luxuryTitleEntrance 1s ease-out;
}

.luxury-slide-description {
    font-size: 1.3rem;
    line-height: 1.6;
    margin: 0 0 40px 0;
    opacity: 0.9;
    animation: luxuryDescEntrance 1s ease-out 0.3s both;
}

.luxury-slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    animation: luxuryBtnEntrance 1s ease-out 0.6s both;
}

.luxury-slide-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: white;
}

.luxury-slide-btn i {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Entrance Animations */
@keyframes luxuryTitleEntrance {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes luxuryDescEntrance {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes luxuryBtnEntrance {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Centered Dots */
.luxury-dots-container {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.luxury-dots {
    display: flex;
    gap: 15px;
    align-items: center;
}

.luxury-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.luxury-dot::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
}

.luxury-dot.active {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.3);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.luxury-dot.active::before {
    left: 0;
}

.luxury-dot:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.6);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .luxury-slide-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .luxury-slide-icon {
        width: 300px;
        height: 300px;
    }
    
    .luxury-slide-title {
        font-size: 3rem;
    }
    
    .luxury-slide-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .luxury-slide-content {
        padding: 0 20px;
        gap: 40px;
    }
    
    .luxury-slide-icon {
        width: 250px;
        height: 250px;
    }
    
    .luxury-slide-title {
        font-size: 2.5rem;
    }
    
    .luxury-slide-description {
        font-size: 1rem;
    }
    
    .luxury-slide-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .luxury-dots-container {
        bottom: 20px;
    }
}

/* Luxury Slick Slider Customization */
.luxury-slick-dots {
    position: relative !important;
    bottom: 0 !important;
    margin-top: 60px !important;
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
}

.luxury-slick-dots li {
    position: relative !important;
    display: inline-block !important;
    width: 16px !important;
    height: 16px !important;
    margin: 0 8px !important;
    padding: 0 !important;
    cursor: pointer !important;
}

.luxury-slick-dots li button {
    width: 16px !important;
    height: 16px !important;
    border-radius: 50% !important;
    background: rgba(106, 200, 198, 0.3) !important;
    border: none !important;
    text-indent: -9999px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
}

.luxury-slick-dots li button::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, #022d5f 0%, #063e7f 100%) !important;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border-radius: 50% !important;
}

.luxury-slick-dots li.slick-active button {
    background: linear-gradient(135deg, #022d5f 0%, #063e7f 100%) !important;
    transform: scale(1.3) !important;
    box-shadow: 0 4px 15px rgba(27, 90, 122, 0.4) !important;
}

.luxury-slick-dots li.slick-active button::before {
    left: 0 !important;
}

.luxury-slick-dots li:hover button {
    transform: scale(1.1) !important;
    background: rgba(106, 200, 198, 0.5) !important;
}

/* Luxury Card Animations */
.luxury-card-active {
    animation: luxuryCardEntrance 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.luxury-card-hover-active {
    transform: translateY(-10px) scale(1.02) !important;
    box-shadow: 0 25px 50px rgba(27, 90, 122, 0.2) !important;
}

.luxury-btn-clicked {
    animation: luxuryBtnClick 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.luxury-view-more-clicked {
    animation: luxuryViewMoreClick 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes luxuryCardEntrance {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes luxuryBtnClick {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes luxuryViewMoreClick {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.98);
    }
    100% {
        transform: scale(1);
    }
}

/* Slick slider container adjustments */
.luxury-services-slider-container .slick-slider {
    position: relative;
}

.luxury-services-slider-container .slick-track {
    display: flex;
    align-items: stretch;
}

.luxury-services-slider-container .slick-slide {
    height: auto;
}

.luxury-services-slider-container .slick-slide > div {
    height: 100%;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .luxury-slick-dots {
        margin-top: 40px !important;
    }
    
    .luxury-slick-dots li {
        width: 12px !important;
        height: 12px !important;
        margin: 0 6px !important;
    }
    
    .luxury-slick-dots li button {
        width: 12px !important;
        height: 12px !important;
    }
}

@media (max-width: 576px) {
    .services-slider-mahnites .slick-slide {
        padding: 0 2px;
    }
    
    .service-card-mahnites {
        margin: 0 auto 10px;
    }
    
    .service-image-mahnites {

        margin: auto;
        display: block !important;
    }
    
    .service-image-mahnites img {
width: auto !important;
        min-height: 90px !important;
        height: 90px !important;
        margin: auto;
        display: block !important;
    }
    
    .service-content-mahnites {
		padding: 15px!important;
    }
    
    .service-title-mahnites {
        font-size: 17px!important;
    }
    
    .service-description-mahnites {
        font-size:15px!important;
    }
    
    .feature-tag {
        font-size: 0.7rem;
        padding: 3px 6px;
    }
}



/* Quantity Selector Padding */
.wc-block-cart-items .wc-block-components-quantity-selector {
    padding-right: 5px !important;
}

/* Cart Totals Title - Large Size */
.is-large.wc-block-cart .wc-block-cart__totals-title {
    font-size: 0.95rem !important;
}

.wc-block-components-totals-shipping .wc-block-components-totals-shipping-address-summary {
    font-size: 0.95rem !important;
}
.wc-block-components-totals-shipping .wc-block-components-totals-shipping__via {
    font-size: 13px;
}
.wc-block-components-totals-footer-item .wc-block-components-totals-item__label, .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    font-size: 15.2px;
}
.wc-block-components-totals-item
 {
    font-size: 0.95rem !important;
}

/* Cart Items Row - Position Relative */
.wc-block-cart-items__row {
    position: relative !important;
}

/* Cart Items Last Cell - Large Size Styling */
.is-large.wc-block-cart .wc-block-cart-items td:last-child {
    padding: 8px !important;
    margin-top: 2px !important;
    position: absolute !important;
    top: 10% !important;
    z-index: 9999 !important;
    right:15px !important;
    background: linear-gradient(135deg, #022d5f 0%, #063e7f 100%) !important;
    width: max-content !important;
    color: white !important;
    border-radius: 12px !important;
}

/* Cart Product Price Money Amount - White Color */
.wc-block-cart-items .wc-block-components-product-price .wc-block-formatted-money-amount {
    color: #fff !important;
}

/* ==========================================================
 * HIDE CART ITEM PRICES - DO NOT MODIFY OR REMOVE
 * This must always be display: none !important
 * ========================================================== */
html body .wc-block-cart-item__prices,
html body .wc-block-cart-item__wrap .wc-block-cart-item__prices,
.wc-block-cart-item__prices,
.wc-block-cart-item__wrap .wc-block-cart-item__prices {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    left: -9999px !important;
}



/* WooCommerce Cart Block Submit Container - Improved UX */
html body .wc-block-cart .wc-block-cart__submit-container,
html body .wp-block-woocommerce-cart .wc-block-cart__submit-container,
.wc-block-cart__submit-container {
    background: linear-gradient(135deg, #022d5f 0%, #063e7f 100%) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
}

html body .wc-block-cart .wc-block-cart__submit-container .wc-block-components-button,
html body .wp-block-woocommerce-cart .wc-block-cart__submit-container .wc-block-components-button,
.wc-block-cart__submit-container .wc-block-components-button {
    background: linear-gradient(135deg, #022d5f 0%, #063e7f 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 0.875rem 1.5rem !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    width: 100% !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    box-shadow: 0 4px 12px rgba(2, 45, 95, 0.2) !important;
}

html body .wc-block-cart .wc-block-cart__submit-container .wc-block-components-button:hover,
html body .wp-block-woocommerce-cart .wc-block-cart__submit-container .wc-block-components-button:hover,
.wc-block-cart__submit-container .wc-block-components-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(2, 45, 95, 0.3) !important;
}

html body .wc-block-cart .wc-block-cart__submit-container .wc-block-components-button:active,
html body .wp-block-woocommerce-cart .wc-block-cart__submit-container .wc-block-components-button:active,
.wc-block-cart__submit-container .wc-block-components-button:active {
    transform: translateY(0) !important;
}

/* ==========================================================
 * MOBILE RESPONSIVE FIXES FOR WOOCOMMERCE CART BLOCKS
 * ========================================================== */

/* Mobile fixes for cart item layout - prevent overlapping */
@media (max-width: 768px) {
 
    /* Cart Item Wrap - Ensure proper stacking */
    .wc-block-cart-item__wrap {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.5rem !important;
        width: 100% !important;
    }
    
    /* Fix cart item table cells on mobile */
    .wc-block-cart-items table,
    .wc-block-cart-items table tbody,
    .wc-block-cart-items table tr {
        display: block !important;
        width: 100% !important;
    }
    
    .wc-block-cart-items table thead {
        display: none !important;
    }
    
    .wc-block-cart-items table td {
        display: block !important;
        width: 100% !important;
        padding: 0.75rem 0 !important;
        border: none !important;
        border-bottom: 1px solid #e5e7eb !important;
        position: relative !important;
        clear: both !important;
        float: none !important;
    }
    
    .wc-block-cart-items table td:last-child {
        border-bottom: none !important;
    }
    
    /* First cell (product info) - ensure proper layout */
    .wc-block-cart-items table td:first-child {
        padding-bottom: 1rem !important;
    }
    
    /* Ensure all content in cells stacks vertically */
    .wc-block-cart-items table td > * {
        display: block !important;
        width: 100% !important;
        margin-bottom: 0.5rem !important;
    }
    
    .wc-block-cart-items table td > *:last-child {
        margin-bottom: 0 !important;
    }
    
    /* Product name cell - prevent overlap with more padding */
    .wc-block-cart-items .wc-block-components-product-name {
        font-size: 0.95rem !important;
        font-weight: 600 !important;
        line-height: 1.4 !important;
        margin-bottom: 0.75rem !important;
        margin-top: 0.5rem !important;
        padding: 0.5rem 0 !important;
        padding-right: 1rem !important;
        padding-left: 0.5rem !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        display: block !important;
        width: 100% !important;
        clear: both !important;
        float: none !important;
        position: relative !important;
    }
    
    /* Product name link padding */
    .wc-block-cart-items .wc-block-components-product-name a {
        padding: 0.25rem 0 !important;
        display: inline-block !important;
        width: 100% !important;
    }
    
    /* Product price - ensure it's on new line and doesn't overlap */
    .wc-block-cart-items .wc-block-components-product-price,
    .wc-block-cart-items td .wc-block-formatted-money-amount,
    .wc-block-cart-items .wc-block-components-product-price__value,
    .wc-block-cart-items .wc-block-formatted-money-amount,
    .wc-block-cart-items table td .wc-block-formatted-money-amount,
    .wc-block-cart-items table td[class*="price"] {
        display: block !important;
        font-size: 0.9rem !important;
        font-weight: 700 !important;
        color: #1b5a7a !important;
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
        margin-left: 0.5rem !important;
        padding: 0.25rem 0 !important;
        padding-left: 0.5rem !important;
        width: 100% !important;
        text-align: left !important;
        clear: both !important;
        float: none !important;
        position: relative !important;
        white-space: nowrap !important;
        line-height: 1.4 !important;
    }
    
    /* Any inline or flex containers that might cause overlap */
    .wc-block-cart-items .wc-block-components-product-name ~ *,
    .wc-block-cart-items td > * {
        display: block !important;
        width: 100% !important;
        float: none !important;
    }
    
    /* Force any price that appears after product name to be on new line */
    .wc-block-cart-items .wc-block-components-product-name + *,
    .wc-block-cart-items .wc-block-components-product-name ~ .wc-block-formatted-money-amount,
    .wc-block-cart-items .wc-block-components-product-name ~ .wc-block-components-product-price,
    .wc-block-cart-items .wc-block-components-product-name ~ span
     {
        clear: both !important;
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
        display: block !important;
        width: 100% !important;
    }
    
    /* Ensure price is always on new line - override any inline display */
    .wc-block-cart-items .wc-block-components-product-name::after {
        content: "" !important;
        display: block !important;
        clear: both !important;
        width: 100% !important;
    }
    
    /* Fix for any table cell that contains both name and price */
    .wc-block-cart-items table td[class*="product"] {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.5rem !important;
    }
    
    /* Product details wrapper - ensure proper stacking */
    .wc-block-cart-items .wc-block-components-product-details {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 0.5rem !important;
    }
    

    
    /* Product image and info wrapper */
    .wc-block-cart-items .wc-block-components-product-summary {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 1rem !important;
        width: 100% !important;
        margin-bottom: 1rem !important;
        flex-wrap: wrap !important;
    }
    
    /* Ensure product details inside summary don't overlap */
    .wc-block-cart-items .wc-block-components-product-summary > * {
        flex: 0 0 auto !important;
        min-width: 0 !important;
    }
    
    /* Product name wrapper to prevent inline flow issues */
    .wc-block-cart-items .wc-block-components-product-name-wrapper,
    .wc-block-cart-items .wc-block-components-product-name a {
        display: block !important;
        width: 100% !important;
        word-break: break-word !important;
    }
    
    /* Cart totals section - add spacing before button */
    .wc-block-cart-totals {
        padding-bottom: 3rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* Ensure submit button has proper spacing - optimized UX */
    .wc-block-cart__submit-container {
        margin-top: 1.5rem !important;
        margin-bottom: 0.75rem !important;
        width: 100% !important;
        padding: 0 !important;
        border-radius: 12px !important;
        overflow: hidden !important;
    }
    
    .wc-block-cart__submit-container .wc-block-components-button {
        margin: 0 !important;
        width: 100% !important;
        padding: 0.875rem 1.5rem !important;
        font-size: 0.95rem !important;
        font-weight: 600 !important;
        border-radius: 12px !important;
        transition: all 0.3s ease !important;
        cursor: pointer !important;
        box-shadow: 0 4px 12px rgba(2, 45, 95, 0.2) !important;
    }
    
    .wc-block-cart__submit-container .wc-block-components-button:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 16px rgba(2, 45, 95, 0.3) !important;
    }
    
    .wc-block-cart__submit-container .wc-block-components-button:active {
        transform: translateY(0) !important;
    }
    
    /* Fix for shipping text being cut off */
    .wc-block-cart-totals .wc-block-components-totals-item:last-of-type {
        margin-bottom: 1.5rem !important;
        padding-bottom: 1rem !important;
        border-bottom: 1px solid #e5e7eb !important;
    }
    
    /* Ensure all text is visible before button - shipping info */
    .wc-block-cart-totals .wc-block-components-totals-item {
        padding: 0.75rem 0 !important;
        margin-bottom: 0.5rem !important;
    }
    
    /* Ensure all text is visible before button */
    .wc-block-cart-totals .wc-block-components-totals-footer-item {
        margin-top: 1.5rem !important;
        padding-top: 1.5rem !important;
        padding-bottom: 1rem !important;
        border-top: 2px solid #e5e7eb !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* Additional spacing for any shipping messages */
    .wc-block-cart-totals .wc-block-components-totals-item[class*="shipping"],
    .wc-block-cart-totals .wc-block-components-totals-item:has-text("Dërgesa"),
    .wc-block-cart-totals .wc-block-components-totals-item:has-text("FALAS") {
        margin-bottom: 1rem !important;
        padding-bottom: 1rem !important;
    }
    
    /* Quantity selector on mobile */
    .wc-block-cart-items .wc-block-components-quantity-selector {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.5rem !important;
        width: auto !important;
        margin: 0 auto !important;
        padding-right: 15px !important;
    }
    
    /* Overall cart container padding */
    .wp-block-woocommerce-cart {
        padding: 1rem !important;
    }
    
    /* Grid layout for cart on mobile - stack items */
    html body .wp-block-woocommerce-cart .wc-block-cart {
        display: block !important;
        grid-template-columns: 1fr !important;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .wc-block-cart-items .wc-block-components-product-name {
        font-size: 0.85rem !important;
    }
    
    .wc-block-cart-items .wc-block-components-product-price,
    .wc-block-cart-items td .wc-block-formatted-money-amount {
        font-size: 0.95rem !important;
    }
    
    .wc-block-cart-items .wc-block-components-product-image img {
        width: 60px !important;
        height: 60px !important;
    }
    
    .wc-block-cart-items .wc-block-components-product-summary {
        gap: 0.75rem !important;
    }
    
    .wp-block-woocommerce-cart {
        padding: 0.75rem !important;
        margin: 0.5rem 0 !important;
    }
}

@media (max-width: 768px) {
    .is-medium table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__total, .is-mobile table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__total, .is-small table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__total {
        grid-row-start: 1;
        position: absolute !important;
        top: 20% !important;
        z-index: 1 !important;
        left: 24% !important;
        background: linear-gradient(135deg, #022d5f 0%, #063e7f 100%) !important;
        width: max-content !important;
        color: white !important;
        border-radius: 12px !important;
        padding-right: 20px;
    }
    .wc-block-cart-items .wc-block-components-product-metadata{
        display: none!important;
    }
    .wc-block-cart-item__quantity {
        margin-top: 90px !important;
    }

}
.wc-block-cart-item__remove-link {
    padding-left: 0px!important;
}


.wc-block-cart-items .wc-block-components-product-metadata{
    display: none;
}

/* Related Services Section - Premium Design */
.related-services-section.premium-services-section {
    position: relative;
    padding-top: 30px;
    padding-bottom: 60px;
    background: #fff;
    overflow: hidden;
    isolation: isolate;
    border-top: none;
}

.related-services-section.premium-services-section .section-header-modern {
    text-align: left;
    margin-bottom: 2rem;
}

.related-services-section.premium-services-section .section-title-modern::after {
    left: 0;
    transform: none;
}