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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    color: #333;
    background-color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1001;
}

.skip-link:focus {
    top: 6px;
}

/* Breadcrumb Navigation */
.breadcrumb {
    background: #f8f9fa;
    padding: 1rem 0;
    margin-top: 80px;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb li:not(:last-child)::after {
    content: ">";
    margin-left: 0.5rem;
    color: #666;
}

.breadcrumb a {
    color: #000000;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #000;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.btn-primary {
    background-color: #000000;
}

.btn-primary:hover {
    background-color: #333333;
}

.btn-secondary {
    background-color: #6c757d;
    margin-left: 1rem;
}

.btn-secondary:hover {
    background-color: #545b62;
}

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

.btn-outline:hover {
    background-color: #000000;
    color: white;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #000;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Quote Section Styles */
.quote-section {
    background-image: url('../images/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    margin: 40px 20px;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
}

.quote-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 8px 40px;
}

.quote-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.quote-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.quote-cta {
    margin-top: 30px;
}

.quote-btn {
    background-color: white;
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.quote-btn:hover {
    background-color: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}



/* Responsive Grid Utilities */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Responsive Grid Breakpoints */
@media (max-width: 768px) {
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    /* Hero responsive styles */
    .hero-content,
    .hero .hero-content.grid.grid-2 {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    /* Ensure hero content is visible on mobile */
    .hero .hero-content {
        margin-top: 20px;
        position: relative;
        z-index: 2;
    }
    
    /* Ensure hero title and subtitle are visible */
    .hero .hero-title,
    .hero .hero-subtitle,
    .hero .hero-description {
        position: relative;
        z-index: 2;
    }
}

@media (max-width: 480px) {
    .grid {
        gap: 1rem;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        gap: 1rem;
    }
    
    /* Quote section responsive styles */
    .quote-section {
        margin: 20px 10px;
        border-radius: 15px;
    }
    
    .quote-content {
        padding: 8px 10px;
    }
    
    .quote-title {
        font-size: 2.2rem;
    }
    
    .quote-description {
        font-size: 1.1rem;
    }
    
    .quote-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    /* Hero mobile styles */
    .hero {
        padding: 100px 0 60px;
        margin-top: 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-btn {
        font-size: 1rem;
        padding: 12px 24px;
    }
    
    /* Hero with background mobile styles */
    .hero-with-bg {
        padding: 120px 0 60px;
    }
    
    .hero-with-bg .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-with-bg .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-with-bg .hero-description {
        font-size: 1rem;
    }
    
    /* Ensure hero content is visible on mobile */
    .hero .hero-content {
        margin-top: 20px;
        position: relative;
        z-index: 2;
    }
    
    /* Ensure hero title and subtitle are visible */
    .hero .hero-title,
    .hero .hero-subtitle,
    .hero .hero-description {
        position: relative;
        z-index: 2;
    }
}

/* Animation Utilities */
.fade-in {
    animation: fadeIn 0.8s ease-in;
}

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

/* Hero Text Animations */
.hero-title-animated {
    animation: slideInFromLeft 1.2s ease-out 0.3s both;
    opacity: 0;
}

.hero-subtitle-animated {
    animation: slideInFromRight 1.2s ease-out 0.6s both;
    opacity: 0;
}

.hero-description-animated {
    animation: fadeInUp 1.2s ease-out 0.9s both;
    opacity: 0;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Typing effect for hero title */
.hero-title-typing {
    overflow: hidden;
    border-right: 3px solid #000000;
    white-space: nowrap;
    animation: typing 2s steps(20, end), blink-caret 0.75s step-end infinite;
    margin: 0 auto;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #000000; }
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s ease;
}

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

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.logo-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.logo-letter {
    font-size: 1.8rem;
    font-weight: 900;
    z-index: 2;
    position: relative;
}

.logo-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #000000, #ffffff);
    border-radius: 0 12px 0 20px;
    opacity: 0.8;
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    color: #000;
    line-height: 1;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-tagline {
    font-size: 0.75rem;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: -2px;
    opacity: 0.8;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #000000;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #000000;
}

/* Mobile Navigation Toggle Button */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
    margin-right: 10px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hamburger-line {
    width: 18px;
    height: 2px;
    background: #000000;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    transform-origin: center;
    margin: 2px 0;
}

/* Mobile Navigation Toggle Focus State */
.mobile-nav-toggle:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mobile-nav-toggle:hover {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .header {
        padding: 1.5rem 0;
    }
    
    .mobile-nav-toggle {
        display: flex;
        margin-right: 10px; /* Move toggle icon a little to the left */
    }
    
    /* Enhanced mobile logo styles */
    .logo-icon {
        width: 42px;
        height: 42px;
    }
    
    .logo-letter {
        font-size: 1.6rem;
    }
    
    .logo-text {
        font-size: 1.6rem;
        font-weight: 900;
    }
    
    .logo-tagline {
        font-size: 0.7rem;
        letter-spacing: 0.8px;
    }
    
    .logo-accent {
        width: 18px;
        height: 18px;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
        z-index: 1001;
        border-left: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav.active {
        right: 0;
        background: #ffffff !important;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 1rem 0;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        color: #000000;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .nav-link:hover {
        color: #000000;
        background: rgba(0, 0, 0, 0.05);
        padding-left: 1rem;
    }
    
    .nav-link.active {
        color: #000000;
        background: rgba(0, 0, 0, 0.1);
        padding-left: 1rem;
        font-weight: 600;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    /* Mobile navigation button styling */
    .nav .btn {
        color: #000000;
        background: transparent;
        border: 2px solid #000000;
        margin-top: 1rem;
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem;
        font-weight: 600;
    }
    
    .nav .btn:hover {
        background: #000000;
        color: #ffffff;
    }
    
    .nav-link.active::after {
        display: none;
    }
    
    /* Hamburger Animation */
    .mobile-nav-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }
    
    .mobile-nav-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }
    
    .mobile-nav-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
    }
    
    /* Mobile toggle button background when active */
    .mobile-nav-toggle.active {
        background: #ffffff;
        border-color: #000000;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
    
    /* Overlay for mobile menu */
    .nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.6);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: -1;
        backdrop-filter: blur(2px);
    }
    
    .nav.active::before {
        opacity: 1;
        visibility: visible;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .nav {
        width: 100%;
        right: -100%;
        z-index: 1001;
    }
    
    .nav.active {
        right: 0;
        background: #ffffff !important;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 1rem 0;
        color: #000000;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        color: #000000;
        background: rgba(0, 0, 0, 0.05);
        padding-left: 1rem;
    }
    
    .nav-link.active {
        color: #000000;
        background: rgba(0, 0, 0, 0.1);
        padding-left: 1rem;
        font-weight: 600;
    }
    
    /* Mobile navigation button styling for extra small devices */
    .nav .btn {
        color: #000000;
        background: transparent;
        border: 2px solid #000000;
        margin-top: 1rem;
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem;
        font-weight: 600;
    }
    
    .nav .btn:hover {
        background: #000000;
        color: #ffffff;
    }
    
    .mobile-nav-toggle {
        width: 40px;
        height: 40px;
        padding: 6px;
    }
    
    .hamburger-line {
        height: 2px;
        width: 16px;
    }
    
    /* Enhanced small mobile logo styles */
    .logo-icon {
        width: 38px;
        height: 38px;
    }
    
    .logo-letter {
        font-size: 1.4rem;
    }
    
    .logo-text {
        font-size: 1.4rem;
        font-weight: 900;
    }
    
    .logo-tagline {
        font-size: 0.65rem;
        letter-spacing: 0.6px;
    }
    
    .logo-accent {
        width: 16px;
        height: 16px;
    }
    
    .logo {
        gap: 0.5rem;
    }
}

/* Ensure proper z-index layering */
.header {
    z-index: 1000;
}

.mobile-nav-toggle {
    z-index: 1002;
}

.nav {
    z-index: 1001;
}

/* Ensure search section is properly positioned above navigation */
.product-search-section {
    position: relative;
    z-index: 10;
}

/* Additional mobile-specific positioning fixes */
@media (max-width: 768px) {
    .product-listing-main {
        padding-top: 20px;
        margin-top: 0;
    }
    
    .product-search-section {
        position: relative;
        z-index: 15;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        border-bottom: 1px solid #f1f5f9;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
    }
}

/* Smooth transitions for better UX */
.nav-link {
    transition: all 0.3s ease;
}

/* Mobile menu backdrop */
.nav.active {
    z-index: 1001;
}

/* Mobile-specific search section positioning */
@media (max-width: 768px) {
    .product-search-section {
        position: relative;
        z-index: 2;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        border-bottom: 1px solid #f1f5f9;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
       
    }
    
    .search-container {
        position: relative;
        z-index: 3;
        
    }
}

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

/* Ensure mobile navigation works on all touch devices */
@media (hover: none) and (pointer: coarse) {
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .mobile-nav-toggle {
        min-height: 44px;
        min-width: 44px;
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Hero Styles */
.hero {
    padding: 120px 0 80px;
    background: white;
    position: relative;
    overflow: hidden;
    min-height: 700px;
    z-index: 1;
    margin-top: 80px; /* Add margin-top to account for fixed header */
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    z-index: 2; /* Ensure slider is above background */
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1; /* Ensure slide is above background */
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 2; /* Ensure active slide is above other slides */
}

.hero-slide.prev {
    transform: translateX(-100%);
}

.hero-slide.next {
    transform: translateX(100%);
}

/* Enhanced fade scroll effect for hero content */
.hero-slide.active .hero-title,
.hero-slide.active .hero-description,
.hero-slide.active .hero-cta,
.hero-slide.active .hero-image {
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.hero-slide.active .hero-text {
    animation: fadeInFromRight 0.8s ease-out 0.3s both;
}

.hero-slide.active .hero-image {
    animation: fadeInFromLeft 0.8s ease-out 0.4s both;
}

/* New fade scroll animations */
@keyframes fadeInFromRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Enhanced Mobile Responsive Design for Hero Slider */
@media (max-width: 1024px) {
    .hero {
        padding: 100px 0 70px;
        min-height: 650px;
    }
    
    .hero-slider {
        min-height: 550px;
    }
    
    .hero-slide .hero-text .hero-title {
        font-size: 3rem;
    }
    
    .hero-slide .hero-text .hero-description {
        font-size: 1.15rem;
    }
    
    .hero-slide .grid.grid-2 {
        gap: 2.5rem;
    }
}

/* Mobile-first responsive improvements */
@media (max-width: 900px) {
    .hero-slide .grid.grid-2 {
        gap: 2rem;
    }
    
    .hero-slide .hero-text .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-slide .hero-text .hero-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 40px;
        min-height: 500px;
        margin-top: 80px; /* Ensure proper spacing on mobile */
    }
    
    .hero-slider {
        min-height: 450px;
        position: relative;
    }
    
    .hero-slider-nav {
        display: none;
    }
    
    .hero-slider-indicators {
        bottom: 20px;
        gap: 10px;
        z-index: 15;
    }
    
    .slider-indicator {
        width: 10px;
        height: 10px;
        min-width: 10px;
        min-height: 10px;
        border-width: 1px;
    }
    
    .hero-slide .grid.grid-2 {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        text-align: center;
        align-items: center;
        min-height: auto;
        padding: 0;
    }
    
    .hero-slide .hero-image {
        order: -1;
        margin-bottom: 1rem;
        padding: 0;
        max-width: 100%;
        flex: none;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-slide .hero-text {
        padding: 0;
        text-align: center;
        max-width: 100%;
        order: 2;
        width: 100%;
    }
    
    .hero-slide .hero-text .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        word-wrap: break-word;
        hyphens: auto;
        padding: 0 10px;
    }
    
    .hero-slide .hero-text .hero-description {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
        hyphens: auto;
        padding: 0 15px;
    }
    
    .hero-slide .hero-cta {
        justify-content: center;
        margin-top: 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0 20px;
    }
    
    .hero-slide .hero-btn {
        width: auto;
        min-width: 200px;
        padding: 14px 24px;
        font-size: 1rem;
        max-width: 280px;
        min-height: 48px;
    }
    
    .hero-slide .hero-img {
        max-height: 250px;
        border-radius: 8px;
        width: 100%;
        height: auto;
        object-fit: cover;
        max-width: 400px;
    }
    
    /* Enhanced mobile layout */
    .hero-slide .container {
        padding: 0 16px;
        width: 100%;
        max-width: 100%;
    }
    
    /* Better spacing for mobile */
    .hero-slide .hero-text .hero-title {
        margin-bottom: 1rem;
    }
    
    .hero-slide .hero-text .hero-description {
        margin-bottom: 1.5rem;
    }
    
    /* Ensure proper stacking on mobile */
    .hero-slide {
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 70px 0 30px;
        min-height: 450px;
        margin-top: 80px; /* Ensure proper spacing on small mobile */
    }
    
    .hero-slider {
        min-height: 400px;
    }
    
    .hero-slider-indicators {
        bottom: 15px;
        gap: 8px;
    }
    
    .slider-indicator {
        width: 8px;
        height: 8px;
        min-width: 8px;
        min-height: 8px;
    }
    
    .hero-slide .grid.grid-2 {
        gap: 1.2rem;
        grid-template-columns: 1fr !important;
    }
    
    .hero-slide .hero-text .hero-title {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
        padding: 0 8px;
    }
    
    .hero-slide .hero-text .hero-description {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 1.2rem;
        padding: 0 12px;
    }
    
    .hero-slide .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        justify-content: center;
        margin-top: 1.2rem;
        padding: 0 15px;
    }
    
    .hero-slide .hero-btn {
        width: 100%;
        max-width: 220px;
        padding: 12px 20px;
        font-size: 0.95rem;
        min-height: 44px;
    }
    
    .hero-slide .hero-img {
        max-height: 200px;
        border-radius: 6px;
        max-width: 350px;
    }
    
    .hero-slide .hero-image {
        margin-bottom: 0.8rem;
    }
    
    /* Enhanced small mobile layout */
    .hero-slide .container {
        padding: 0 12px;
    }
    
    /* Better mobile spacing */
    .hero-slide .hero-text .hero-title {
        margin-bottom: 0.8rem;
    }
    
    .hero-slide .hero-text .hero-description {
        margin-bottom: 1.2rem;
    }
    
    .hero-slide .hero-cta {
        margin-top: 1.2rem;
    }
}

/* Landscape orientation optimization for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 60px 0 30px;
        min-height: 400px;
        margin-top: 80px; /* Ensure proper spacing on landscape mobile */
    }
    
    .hero-slider {
        min-height: 350px;
    }
    
    .hero-slide .grid.grid-2 {
        gap: 1.5rem;
    }
    
    .hero-slide .hero-text .hero-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-slide .hero-text .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .hero-slide .hero-img {
        max-height: 180px;
    }
    
    .hero-slide .hero-image {
        margin-bottom: 0.8rem;
    }
    
    .hero-slide .hero-cta {
        margin-top: 1rem;
    }
}

/* Extra small mobile devices */
@media (max-width: 360px) {
    .hero {
        padding: 60px 0 20px;
        min-height: 400px;
        margin-top: 80px; /* Ensure proper spacing on extra small mobile */
    }
    
    .hero-slider {
        min-height: 350px;
    }
    
    .hero-slide .hero-text .hero-title {
        font-size: 0.9rem;
        line-height: 1.2;
        margin-bottom: 0.6rem;
        padding: 0 6px;
    }
    
    .hero-slide .hero-text .hero-description {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 1rem;
        padding: 0 10px;
    }
    
    .hero-slide .hero-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
        min-width: 160px;
        max-width: 200px
    }
}

/* Ultra small mobile devices */
@media (max-width: 320px) {
    .hero-slide .hero-text .hero-title {
        font-size: 0.8rem;
        line-height: 1.1;
        margin-bottom: 0.5rem;
        padding: 0 4px;
    }
    
    .hero-slide .hero-text .hero-description {
        font-size: 0.75rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
        padding: 0 8px;
    }
    
    .hero-slide .hero-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
        min-width: 140px;
        max-width: 180px;
    }
    }
    
    .hero-slide .hero-img {
        max-height: 160px;
        border-radius: 4px;
        max-width: 300px;
    }
    
    .hero-slide .container {
        padding: 0 10px;
    }
    
    .hero-slide .hero-image {
        margin-bottom: 0.6rem;
    }
    
    .hero-slide .hero-cta {
        margin-top: 1rem;
        padding: 0 10px;
    }
    
    .hero-slide .grid.grid-2 {
        gap: 1rem;
    }
    
    .hero-slider-indicators {
        bottom: 12px;
        gap: 6px;
    }
    
    .slider-indicator {
        width: 6px;
        height: 6px;
        min-width: 6px;
        min-height: 6px;
    }
}

/* Ultra small devices */
@media (max-width: 320px) {
    .hero {
        padding: 50px 0 15px;
        min-height: 350px;
        margin-top: 80px; /* Ensure proper spacing on ultra small mobile */
    }
    
    .hero-slider {
        min-height: 300px;
    }
    
    .hero-slide .hero-text .hero-title {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
        line-height: 1.2;
        padding: 0 5px;
    }
    
    .hero-slide .hero-text .hero-description {
        font-size: 0.75rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
        padding: 0 8px;
    }
    
    .hero-slide .hero-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
        min-width: 140px;
        max-width: 180px;
    }
    
    .hero-slide .hero-img {
        max-height: 120px;
        border-radius: 3px;
        max-width: 250px;
    }
    
    .hero-slide .container {
        padding: 0 8px;
    }
    
    .hero-slider-indicators {
        bottom: 10px;
        gap: 4px;
    }
    
    .slider-indicator {
        width: 5px;
        height: 5px;
        min-width: 5px;
        min-height: 5px;
    }
    
    .hero-slide .grid.grid-2 {
        gap: 0.8rem;
    }
    
    .hero-slide .hero-image {
        margin-bottom: 0.5rem;
    }
    
    .hero-slide .hero-cta {
        margin-top: 0.8rem;
        padding: 0 8px;
        gap: 0.6rem;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .hero-slider-indicators {
        bottom: 25px;
    }
    
    .slider-indicator {
        width: 12px;
        height: 12px;
        min-width: 12px;
        min-height: 12px;
    }
    
    .hero-slide .hero-btn {
        min-height: 48px; /* Touch-friendly button height */
    }
    
    /* Ensure touch targets are large enough */
    .slider-indicator {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .slider-indicator::before {
        content: '';
        width: 8px;
        height: 8px;
        background: currentColor;
        border-radius: 50%;
    }
    
    .slider-indicator.active::before {
        width: 10px;
        height: 10px;
    }
    
    /* Additional touch improvements */
    .hero-slide .hero-btn {
        border-radius: 8px;
        transition: all 0.2s ease;
    }
    
    .hero-slide .hero-btn:active {
        transform: scale(0.98);
        background-color: #333;
    }
    
    /* Improve slider indicator touch targets */
    .slider-indicator:active {
        transform: scale(1.1);
        background: rgba(0, 0, 0, 0.6);
    }
}

/* Additional mobile optimizations for hero section */
@media (max-width: 768px) {
    .hero-slide .grid.grid-2 {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .hero-slide .hero-text {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
    }
    
    .hero-slide .hero-image {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .hero-slide .hero-img {
        max-width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }
    
    /* Ensure proper spacing on mobile */
    .hero-slide .hero-text .hero-title {
        margin-bottom: 1rem !important;
        padding: 0 10px !important;
    }
    
    .hero-slide .hero-text .hero-description {
        margin-bottom: 1.5rem !important;
        padding: 0 15px !important;
    }
    
    .hero-slide .hero-cta {
        margin-top: 1.5rem !important;
        padding: 0 20px !important;
    }
}

/* Enhanced responsive design for ultra-wide screens */
@media (min-width: 1400px) {
    .hero-slide .container {
        max-width: 1400px;
    }
    
    .hero-slide .hero-text .hero-title {
        font-size: 4rem;
    }
    
    .hero-slide .hero-text .hero-description {
        font-size: 1.3rem;
    }
    
    .hero-slide .hero-img {
        max-height: 600px;
    }
}

/* Enhanced responsive design for medium screens */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-slide .hero-text .hero-title {
        font-size: 3rem;
    }
    
    .hero-slide .hero-text .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-slide .grid.grid-2 {
        gap: 2rem;
    }
    
    .hero-slide .hero-image {
        padding-left: 1rem;
    }
}

/* Enhanced responsive design for small tablets */
@media (min-width: 481px) and (max-width: 768px) {
    .hero-slide .hero-text .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-slide .hero-text .hero-description {
        font-size: 1rem;
    }
    
    .hero-slide .hero-btn {
        min-width: 160px;
        padding: 13px 18px;
    }
}

/* Enhanced responsive design for very small screens */
@media (max-width: 360px) {
    .hero-slide .hero-text .hero-title {
        font-size: 1.2rem;
        line-height: 1.1;
    }
    
    .hero-slide .hero-text .hero-description {
        font-size: 0.7rem;
        line-height: 1.2;
    }
    
    .hero-slide .hero-btn {
        padding: 8px 10px;
        font-size: 0.75rem;
        min-width: 120px;
    }
    
    .hero-slide .hero-img {
        max-height: 120px;
    }
}

/* Enhanced responsive design for landscape mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 80px 0 40px;
        min-height: 400px;
    }
    
    .hero-slider {
        min-height: 350px;
    }
    
    .hero-slide .hero-text .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }
    
    .hero-slide .hero-text .hero-description {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-slide .hero-img {
        max-height: 180px;
    }
    
    .hero-slide .hero-image {
        margin-bottom: 0.8rem;
    }
}

/* Mobile swipe gesture improvements */
@media (max-width: 768px) {
    .hero-slider {
        touch-action: pan-y pinch-zoom;
        -webkit-overflow-scrolling: touch;
    }
    
    .hero-slide {
        touch-action: pan-y;
    }
    
    /* Better mobile image handling */
    .hero-slide .hero-img {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        pointer-events: none;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-slide .hero-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Enhanced fade scroll effect for better visual appeal */
.hero-slide .hero-text,
.hero-slide .hero-image {
    opacity: 0;
    transform: translateX(0);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active .hero-text {
    opacity: 1;
    transform: translateX(0);
}

.hero-slide.active .hero-image {
    opacity: 1;
    transform: translateX(0);
}

/* Enhanced slide transitions */
.hero-slide {
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active {
    z-index: 2;
}

.hero-slide.prev,
.hero-slide.next {
    z-index: 1;
}

/* Smooth content animations */
.hero-slide .hero-text .hero-title,
.hero-slide .hero-text .hero-description,
.hero-slide .hero-text .hero-cta {
    will-change: opacity, transform;
}

.hero-slide .hero-image {
    will-change: opacity, transform;
}

/* Enhanced hover effects for interactive elements */
.hero-slide .hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-slide .hero-img:hover {
    transform: scale(1.08);
}

/* Focus states for accessibility */
.hero-slide .hero-btn:focus {
    outline: 3px solid #000000;
    outline-offset: 3px;
}

.hero-slide .hero-img:focus {
    outline: 3px solid #000000;
    outline-offset: 5px;
}

/* Slider Navigation */
.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
    pointer-events: none;
    display: none; /* Hide the navigation arrows */
}

.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-nav-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav-btn.prev {
    left: 20px;
}

.slider-nav-btn.next {
    right: 20px;
}

.slider-nav-btn:focus {
    outline: 2px solid #000000;
    outline-offset: 2px;
}

.slider-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

/* Slider Indicators */
.hero-slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-indicator:hover {
    background: rgba(0, 0, 0, 0.6);
}

.slider-indicator.active {
    background: #000000;
    border-color: #000000;
    transform: scale(1.2);
}

.slider-indicator:focus {
    outline: 2px solid #000000;
    outline-offset: 2px;
}

/* Smooth transitions for hero elements */
.hero-slide .hero-title,
.hero-slide .hero-description,
.hero-slide .hero-cta {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active .hero-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.hero-slide.active .hero-description {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.hero-slide.active .hero-cta {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

/* Hero Content Styles */
.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2; /* Ensure content is above background */
}

.hero-slide .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #000000;
    line-height: 1.4;
}

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

.hero-btn {
    font-size: 1.1rem;
    padding: 15px 30px;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.hero-image {
    text-align: center;
    flex-shrink: 0;
    flex: 1;
    max-width: 500px;
}

/* Enhanced responsive grid for hero content */
.hero-slide .grid.grid-2 {
    align-items: center;
    min-height: 500px;
    gap: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* Mobile grid improvements */
@media (max-width: 768px) {
    .hero-slide .grid.grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
        align-items: stretch;
    }
    
    .hero-slide .hero-text {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
    }
    
    .hero-slide .hero-image {
        display: flex;
        justify-content: center;
        align-items: center;
        order: -1;
    }
    
    /* Mobile title improvements */
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 0.8rem;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    /* Mobile description improvements */
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 1rem;
        word-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
    }
    
    /* Mobile button improvements */
    .hero-btn {
        width: 100%;
        max-width: 240px;
        padding: 14px 20px;
        font-size: 0.95rem;
        border-radius: 6px;
        margin-top: 1rem;
        display: inline-block;
        text-align: center;
    }
    
    /* Mobile image improvements */
    .hero-image {
        max-width: 100%;
        flex: none;
        order: -1;
        margin-bottom: 1rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-image img {
        max-width: 100%;
        height: auto;
        border-radius: 6px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 0.6rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }
    
    .hero-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
        max-width: 200px;
    }
    
    .hero-image {
        margin-bottom: 0.8rem;
    }
    
    .hero-image img {
        border-radius: 4px;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.3rem;
        line-height: 1.1;
        margin-bottom: 0.4rem;
    }
    
    .hero-description {
        font-size: 0.75rem;
        line-height: 1.3;
        margin-bottom: 0.6rem;
    }
    
    .hero-btn {
        padding: 10px 14px;
        font-size: 0.85rem;
        max-width: 180px;
    }
    
    .hero-image {
        margin-bottom: 0.6rem;
    }
    
    .hero-image img {
        border-radius: 3px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 320px) {
    .hero-title {
        font-size: 1.1rem;
        line-height: 1.1;
        margin-bottom: 0.3rem;
    }
    
    .hero-description {
        font-size: 0.7rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }
    
    .hero-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
        max-width: 150px;
    }
    
    .hero-image {
        margin-bottom: 0.4rem;
    }
    
    .hero-image img {
        border-radius: 2px;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }
}

.hero-slide .hero-text {
    flex: 1;
    max-width: 600px;
    padding-right: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2; /* Ensure text is above background */
}

.hero-slide .hero-text .hero-title {
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-slide .hero-text .hero-description {
    margin-bottom: 2rem;
    color: #666;
    font-size: 1.2rem;
    line-height: 1.6;
}

.hero-slide .hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.hero-slide .hero-btn {
    background-color: #000;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.hero-slide .hero-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-slide .hero-btn:focus {
    outline: 2px solid #000000;
    outline-offset: 2px;
}

.hero-slide .hero-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-slide .hero-image {
    flex: 1;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 2rem;
    overflow: hidden;
    position: relative;
    z-index: 2; /* Ensure image is above background */
}

.hero-slide .hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    width: 100%;
    max-height: 500px;
    transition: transform 0.3s ease;
    display: block;
}

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

.hero-slide .hero-img:focus {
    outline: 2px solid #000000;
    outline-offset: 4px;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    width: 100%;
    max-height: 500px;
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Hero with Background Image */
.hero-with-bg {
    position: relative;
    background: url('../images/hero.jpg') center center/cover no-repeat;
    color: white;
    text-align: center;
    z-index: 1;
    margin-top: 80px; /* Add margin-top to account for fixed header */
}

/* Ensure proper spacing for hero-with-bg on mobile */
@media (max-width: 768px) {
    .hero-with-bg {
        margin-top: 80px; /* Ensure proper spacing on mobile */
    }
}

@media (max-width: 480px) {
    .hero-with-bg {
        margin-top: 80px; /* Ensure proper spacing on small mobile */
    }
}

.hero-with-bg .hero-content {
    position: relative;
    z-index: 2;
    flex-direction: column;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-with-bg .hero-title {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-with-bg .hero-subtitle {
    color: #f8f9fa;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-with-bg .hero-description {
    color: #e9ecef;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Responsive Hero Animations */
@media (max-width: 768px) {
    .hero-title-animated {
        animation: slideInFromLeft 1s ease-out 0.2s both;
    }
    
    .hero-subtitle-animated {
        animation: slideInFromRight 1s ease-out 0.4s both;
    }
    
    .hero-description-animated {
        animation: fadeInUp 1s ease-out 0.6s both;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    /* Additional mobile hero-with-bg spacing */
    .hero-with-bg {
        padding-top: 100px;
    }
    
    .hero-with-bg .hero-content {
        padding-top: 20px;
    }
    
    /* Ensure hero content is visible on mobile */
    .hero .hero-content {
        margin-top: 0; /* Remove conflicting margin */
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    /* Additional mobile hero-with-bg spacing */
    .hero-with-bg {
        padding-top: 120px;
    }
    
    .hero-with-bg .hero-content {
        padding-top: 20px;
    }
    
    /* Ensure hero content is visible on mobile */
    .hero .hero-content {
        margin-top: 0; /* Remove conflicting margin */
    }
}

/* Key Benefits Section */
.key-benefits {
    background: white;
}

.benefits-grid {
    margin-bottom: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.benefit-item i {
    font-size: 3rem;
    color: #000000;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #000;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* Features Styles */
.features {
    background: white;
}

.features-grid {
    margin-bottom: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
}

.feature-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-link {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.feature-link:hover {
    color: #333333;
}

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

/* What We Offer Styles */
.what-we-offer {
    background: white;
}

.offerings {
    margin-bottom: 4rem;
}

.offering-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.offering-item:nth-child(even) {
    direction: rtl;
}

.offering-item:nth-child(even) .offering-content {
    direction: ltr;
}

.offering-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000;
}

.offering-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.offering-illustration {
    text-align: center;
}

.offering-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Product Features */
.product-features {
    margin: 1.5rem 0;
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.product-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: bold;
}

/* Mobile Responsive Styles for Premium Surveying Equipment */
@media (max-width: 1024px) {
    .offerings {
        margin-bottom: 3rem;
    }
    
    .offering-item {
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .offering-title {
        font-size: 2.2rem;
        margin-bottom: 1.25rem;
    }
    
    .offering-description {
        font-size: 1rem;
        margin-bottom: 1.75rem;
    }
}

@media (max-width: 768px) {
    .offerings {
        margin-bottom: 2.5rem;
    }
    
    .offering-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2.5rem;
        text-align: center;
    }
    
    .offering-item:nth-child(even) {
        direction: ltr;
    }
    
    .offering-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .offering-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .product-features {
        margin: 1.25rem 0;
    }
    
    .product-features li {
        padding: 0.4rem 0;
        padding-left: 1.25rem;
    }
    
    .offering-illustration {
        order: -1;
        margin-bottom: 1rem;
    }
    
    .offering-img {
        max-width: 90%;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .offerings {
        margin-bottom: 2rem;
    }
    
    .offering-item {
        gap: 1.5rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .offering-title {
        font-size: 1.75rem;
        margin-bottom: 0.875rem;
    }
    
    .offering-description {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
        line-height: 1.6;
    }
    
    .product-features {
        margin: 1rem 0;
    }
    
    .product-features li {
        padding: 0.35rem 0;
        padding-left: 1.1rem;
        font-size: 0.9rem;
    }
    
    .offering-img {
        max-width: 100%;
        border-radius: 6px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Additional Products */
.additional-products {
    margin-top: 4rem;
    text-align: center;
}

.additional-products h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #000;
}

.products-grid {
    margin-bottom: 2rem;
}

.product-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.product-item i {
    font-size: 3rem;
    color: #000000;
    margin-bottom: 1rem;
}

.product-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #000;
}

.product-item p {
    color: #666;
    line-height: 1.6;
}

/* Reach Out Container */
.reach-out-container {
    position: relative;
    background: white;
    padding: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
    color: #333;
    overflow: hidden;
}

.abstract-element-1,
.abstract-element-2,
.abstract-element-3,
.abstract-element-4,
.abstract-element-5,
.abstract-element-6 {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.abstract-element-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.abstract-element-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.abstract-element-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

.abstract-element-4 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 30%;
    animation-delay: 3s;
}

.abstract-element-5 {
    width: 60px;
    height: 60px;
    bottom: 40%;
    right: 25%;
    animation-delay: 4s;
}

.abstract-element-6 {
    width: 90px;
    height: 90px;
    top: 70%;
    left: 30%;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.reach-out-content {
    position: relative;
    z-index: 2;
}

.reach-out-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.reach-out-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.reach-out-btn {
    background: white;
    color: #000000;
    font-size: 1.1rem;
    padding: 15px 30px;
    border-radius: 8px;
}

.reach-out-btn:hover {
    background: #f0f0f0;
    color: #5a6fd8;
}

/* Reach Out Buttons */
.reach-out-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* FAQ Section */
.faq-section {
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    background: #f0f0f0;
    padding: 1.5rem;
    margin: 0;
    cursor: pointer;
    transition: background 0.3s ease;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
}

.faq-question:hover {
    background: #e0e0e0;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    background: white;
}

.testimonials-grid {
    margin-bottom: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

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

.testimonial-profile {
    margin-bottom: 1.5rem;
}

.profile-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #000000;
    margin: 0 auto 1rem;
    display: block;
    background: linear-gradient(135deg, #000000, #333333);
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    line-height: 80px;
}

.profile-info {
    text-align: center;
}

.profile-name {
    font-style: normal;
    font-weight: 700;
    color: #000;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.25rem;
}

.profile-title {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.testimonial-content {
    position: relative;
}

.testimonial-content::before {
    content: "\201C";
    font-size: 3rem;
    color: #000000;
    font-family: serif;
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.3;
}

.testimonial-content p {
    font-style: italic;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    align-items: center;
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
}

/* Enhanced Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #000000;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.contact-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #000000, #333333);
}

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

.contact-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #000000, #333333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1);
}

.contact-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.contact-card p,
.contact-card a {
    color: #666;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #000000;
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
}

.contact-form-container h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    position: relative;
    margin-bottom: 0.35rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.2rem;
    font-weight: 600;
    color: #333;
    font-size: 0.85rem;
    text-align: left;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.45rem 0.7rem;
    border: 1.5px solid #e1e5e9;
    border-radius: 6px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    background: #fafbfc;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #000000;
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group textarea {
    resize: vertical;
    min-height: 60px;
}

.contact-form .btn {
    background: linear-gradient(135deg, #000000, #333333);
    color: white;
    font-size: 0.9rem;
    padding: 0.45rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-top: 0.35rem;
}

/* Compact Form Styles */
.compact-form {
    padding: 0.5rem;
}

.compact-form .form-group.compact {
    margin-bottom: 0.25rem;
}

.compact-form .form-group.compact label {
    margin-bottom: 0.15rem;
    font-size: 0.8rem;
    font-weight: 500;
}

.compact-form .compact-input {
    padding: 0.35rem 0.6rem !important;
    border-radius: 5px !important;
    font-size: 0.8rem !important;
    border: 1px solid #e1e5e9 !important;
    min-height: 32px;
}

.compact-form .compact-input:focus {
    border-color: #000000 !important;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1) !important;
}

.compact-form textarea.compact-input {
    min-height: 50px;
    resize: none;
}

.compact-form .compact-btn {
    padding: 0.35rem 0.8rem !important;
    font-size: 0.85rem !important;
    border-radius: 5px !important;
    margin-top: 0.25rem !important;
    min-height: 36px;
}

.contact-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.contact-form .btn:active {
    transform: translateY(0);
}

/* Form Messages and Validation Styles */
.form-message {
    margin: 1rem 0;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    animation: slideInDown 0.3s ease;
}

.form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.form-message i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.form-message span {
    flex: 1;
}

/* Field Validation Styles */
.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #ef4444;
    background-color: #fef2f2;
}

.field-error {
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Loading State Styles */
.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

/* Animation Keyframes */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.contact-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.contact-cta h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.contact-cta p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-cta .btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 8px;
}

.contact-cta .btn-outline {
    background: transparent;
    border: 2px solid #000000;
    color: #000000;
}

.contact-cta .btn-outline:hover {
    background: #000000;
    color: white;
}

/* New Contact Page Layout Styles */
.contact-hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: #f8fafc;
}

.contact-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
    width: 100%;
}

.contact-hero-left {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.contact-hero-left::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 450px;
}

.contact-subtitle {
    font-size: 1rem;
    font-weight: 500;
    color: #fbbf24;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-tagline {
    font-size: 1.1rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    font-style: italic;
}

.golden-cube {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate 20s infinite linear;
}

.cube-face {
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border: 2px solid #d97706;
    opacity: 0.9;
}

.cube-face.front { transform: translateZ(60px); }
.cube-face.back { transform: translateZ(-60px); }
.cube-face.right { transform: rotateY(90deg) translateZ(60px); }
.cube-face.left { transform: rotateY(-90deg) translateZ(60px); }
.cube-face.top { transform: rotateX(90deg) translateZ(60px); }
.cube-face.bottom { transform: rotateX(-90deg) translateZ(60px); }

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

.contact-main-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.contact-description {
    font-size: 1.1rem;
    color: #e5e7eb;
    line-height: 1.7;
    opacity: 0.9;
}

.contact-hero-right {
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1.5rem;
}

.contact-form-panel {
    background: #f8fafc;
    padding: 0.5rem;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    width: 100%;
    max-width: 550px;
    backdrop-filter: blur(10px);
}

.form-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #1a1a1a;
    text-align: center;
}

.form-description {
    color: #64748b;
    text-align: center;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    font-size: 0.75rem;
}

.phone-input-group {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
    width: 100%;
    position: relative;
}

.country-code {
    width: 90px;
    padding: 0.75rem 0.5rem;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    background: #fafbfc;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    text-align: center;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 16px;
    padding-right: 1.75rem;
    font-family: inherit;
    line-height: 1.2;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.country-code:focus {
    outline: none;
    border-color: #000000;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.1);
}

.country-code:hover {
    border-color: #cbd5e1;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.phone-input-group input[type="tel"] {
    flex: 1;
    min-width: 0;
    padding: 0.875rem 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    background: #fafbfc;
    font-size: 1rem;
    color: #1a1a1a;
    transition: all 0.3s ease;
    font-family: inherit;
    line-height: 1.2;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.phone-input-group input[type="tel"]:focus {
    outline: none;
    border-color: #000000;
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.1);
}

.phone-input-group input[type="tel"]:hover {
    border-color: #cbd5e1;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.phone-input-group input[type="tel"]::placeholder {
    color: #9ca3af;
}

/* Enhanced focus states for better accessibility */
.phone-input-group:focus-within {
    transform: translateY(-1px);
}

/* Responsive phone input */
@media (max-width: 768px) {
    .phone-input-group {
        gap: 0.5rem;
    }
    
    .country-code {
        width: 80px;
        font-size: 0.8rem;
        padding: 0.625rem 0.375rem;
        padding-right: 1.5rem;
    }
    
    .phone-input-group input[type="tel"] {
        padding: 0.75rem 0.875rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .phone-input-group {
        flex-direction: column;
        gap: 0.5rem;
        align-items: stretch;
    }
    
    .country-code {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem;
        padding-right: 2rem;
        font-size: 0.85rem;
    }
    
    .phone-input-group input[type="tel"] {
        width: 100%;
        padding: 0.875rem 1rem;
        font-size: 1rem;
    }
}

.btn-submit {
    background: #1a1a1a;
    color: white;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contact-info-section {
    background: white;
    padding: 4rem 0;
}

.benefits-section {
    background: #f8fafc;
    padding: 4rem 0;
}

.benefits-section.compact {
    padding: 2.5rem 0;
}

/* Responsive adjustments for benefits section */
@media (max-width: 768px) {
    .benefits-section {
        padding: 3rem 0;
    }
    
    .benefits-section .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .benefits-section {
        padding: 1.5rem 0;
    }
    
    .benefits-section .section-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .contact-hero-section {
        min-height: 70vh;
    }
    
    .contact-hero-container {
        min-height: 70vh;
    }
    
    .contact-hero-left,
    .contact-hero-right {
        padding: 1rem 0.75rem;
    }
    
    .contact-main-title {
        font-size: 1.5rem;
    }
    
    .contact-form-panel {
        padding: 0.75rem 0.5rem;
        margin: 0 0.5rem;
    }
    
    .form-title {
        font-size: 1rem;
    }
    
    .form-description {
        font-size: 0.75rem;
    }
    
    .golden-cube {
        width: 50px;
        height: 50px;
    }
    
    .cube-face {
        width: 50px;
        height: 50px;
    }
    
    .cube-face.front { transform: translateZ(25px); }
    .cube-face.back { transform: translateZ(-25px); }
    .cube-face.right { transform: rotateY(90deg) translateZ(25px); }
    .cube-face.left { transform: rotateY(-90deg) translateZ(25px); }
    .cube-face.top { transform: rotateX(90deg) translateZ(25px); }
    .cube-face.bottom { transform: rotateX(-90deg) translateZ(25px); }
}

/* Responsive Design for New Contact Layout */
@media (max-width: 1024px) {
    .contact-hero-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .contact-hero-left,
    .contact-hero-right {
        padding: 2rem 1.5rem;
    }
    
    .contact-main-title {
        font-size: 2rem;
    }
    
    .golden-cube {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }
    
    .cube-face {
        width: 80px;
        height: 80px;
    }
    
    .cube-face.front { transform: translateZ(40px); }
    .cube-face.back { transform: translateZ(-40px); }
    .cube-face.right { transform: rotateY(90deg) translateZ(40px); }
    .cube-face.left { transform: rotateY(-90deg) translateZ(40px); }
    .cube-face.top { transform: rotateX(90deg) translateZ(40px); }
    .cube-face.bottom { transform: rotateX(-90deg) translateZ(40px); }
}

@media (max-width: 768px) {
    .contact-hero-left,
    .contact-hero-right {
        padding: 1.5rem 1rem;
    }
    
    .contact-main-title {
        font-size: 1.75rem;
    }
    
    .contact-form-panel {
        padding: 1.5rem 1rem;
        margin: 0 1rem;
    }
    
    .golden-cube {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .cube-face {
        width: 60px;
        height: 60px;
    }
    
    .cube-face.front { transform: translateZ(30px); }
    .cube-face.back { transform: translateZ(-30px); }
    .cube-face.right { transform: rotateY(90deg) translateZ(30px); }
    .cube-face.left { transform: rotateY(-90deg) translateZ(30px); }
    .cube-face.top { transform: rotateX(90deg) translateZ(30px); }
    .cube-face.bottom { transform: rotateX(-90deg) translateZ(30px); }
    
    .contact-subtitle-white {
        font-size: 0.9rem;
    }
    
    .contact-tagline-white {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .contact-description-white {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

/* White Theme Styles for Contact Page */
.contact-hero-left-white {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.contact-hero-left-white::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(0,0,0,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.contact-subtitle-white {
    font-size: 1rem;
    font-weight: 500;
    color: #fbbf24;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-tagline-white {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    font-style: italic;
}

.contact-main-title-white {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #1a1a1a;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.contact-description-white {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    opacity: 0.9;
}

/* Additional Styles for New Pages */

/* Service Item Styles */
.service-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    color: #000000;
    margin-bottom: 1.5rem;
}

.service-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-item p {
    color: #666;
    line-height: 1.6;
}

/* Product Item Styles */
.product-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.product-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.product-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.product-features li {
    padding: 0.25rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.product-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: bold;
}

/* Accessory Item Styles */
.accessory-item {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.accessory-item:hover {
    transform: translateY(-5px);
}

.accessory-item i {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 1rem;
}

.accessory-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.accessory-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Support Item Styles */
.support-item {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.support-item:hover {
    transform: translateY(-5px);
}

.support-item i {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 1rem;
}

.support-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.support-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Blog Post Styles */
.blog-post {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.blog-post:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.blog-date {
    color: #666;
}

.blog-category {
    color: #000000;
    font-weight: 500;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.4;
}

.blog-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Category Item Styles */
.category-item {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-item i {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 1rem;
}

.category-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.category-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Newsletter Styles */
.newsletter-signup {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-signup p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: #000000;
}

/* Tag Cloud Styles */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #f1f5f9;
    color: #475569;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #000000;
    color: white;
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .tag-cloud {
        justify-content: flex-start;
    }
    
    .product-item,
    .blog-post {
        margin-bottom: 2rem;
    }
}

/* Product Listing Page Styles */
.product-listing-main {
    background-color: #ffffff;
    min-height: 100vh;
}

/* Search and Sort Section */
.product-search-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem 0;
    border-bottom: 1px solid #f1f5f9;
    margin-top: 80px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 10;
}

.search-sort-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.search-container {
    flex: 1;
    max-width: 600px;
}

.search-bar {
    position: relative;
    width: 100%;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1.1rem;
}

.search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.search-input:focus {
    outline: none;
    border-color: #000000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.sort-layout-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sort-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #475569;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sort-btn:hover {
    border-color: #000000;
    color: #000000;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.layout-toggle {
    display: flex;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.layout-btn {
    padding: 0.875rem;
    background: white;
    border: none;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 50px;
}

.layout-btn.active {
    background: #000000;
    color: white;
}

/* Mobile responsive styles for search and sort */
@media (max-width: 768px) {
    .product-search-section {
        margin-top: 140px; /* Further increased margin to push search section down */
        padding: 1.5rem 0;
        position: relative;
        z-index: 15;
    }
    
    .search-sort-container {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .search-container {
        max-width: 100%;
        position: relative;
        z-index: 16;
    }
    
    .search-bar {
        position: relative;
        z-index: 17;
    }
    
    .sort-layout-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .sort-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .layout-btn {
        padding: 0.75rem;
        min-width: 45px;
    }
}

@media (max-width: 480px) {
    .product-search-section {
        margin-top: 150px; /* Further increased margin for very small mobile screens */
        padding: 1.25rem 0;
        position: relative;
        z-index: 15;
    }
    
    .search-sort-container {
        gap: 0.75rem;
    }
    
    .sort-layout-container {
        gap: 0.75rem;
    }
    
    .sort-btn {
        padding: 0.625rem 1rem;
        font-size: 0.8rem;
    }
    
    .layout-btn {
        padding: 0.625rem;
        min-width: 40px;
    }
}

.layout-btn:hover:not(.active) {
    background: #f8fafc;
    color: #000000;
}

/* Main Product Section */
.product-listing-section {
    padding: 3rem 0;
    background: #ffffff;
}

.product-listing-container {
    display: block;
    width: 100%;
}

@media (max-width: 768px) {
    .product-listing-container {
        width: 100%;
    }
    
    .product-content {
        padding: 1.5rem;
    }
}

/* Product Content - Full Width */

.filter-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f8fafc;
}

@media (max-width: 768px) {
    .filter-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .filter-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .filter-tags {
        gap: 0.5rem;
    }
    
    .filter-tag {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }
    
    .price-filter {
        gap: 0.75rem;
    }
    
    .price-input-group {
        gap: 0.25rem;
    }
    
    .price-input {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .brand-filters {
        gap: 0.5rem;
    }
    
    .brand-checkbox {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
}

.filter-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.filter-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e2e8f0;
    position: relative;
}

.filter-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #000000;
    border-radius: 1px;
}

.category-list {
    list-style: none;
}

.category-item {
    margin-bottom: 0.5rem;
}

.category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    color: #64748b;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    font-weight: 500;
}

.category-link:hover,
.category-link.active {
    color: #000000;
    background: #f8f9fa;
    transform: translateX(4px);
}

.category-count {
    font-size: 0.85rem;
    color: #94a3b8;
    background: #f1f5f9;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-weight: 500;
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.filter-tag {
    padding: 0.625rem 1.25rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 25px;
    font-size: 0.85rem;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.filter-tag.active,
.filter-tag:hover {
    background: #000000;
    border-color: #000000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.price-filter {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.price-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-input-group label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.price-input {
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: white;
}

.price-input:focus {
    outline: none;
    border-color: #000000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.apply-filter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: #000000;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.apply-filter-btn:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.brand-filters {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.brand-checkbox {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #475569;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.brand-checkbox:hover {
    background: #f8fafc;
}

.brand-checkbox input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e1;
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
    background: white;
}

.brand-checkbox input[type="checkbox"]:checked + .checkmark {
    background: #000000;
    border-color: #000000;
    transform: scale(1.1);
}

.brand-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Right Section - Product Content */
.product-content {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
}

.results-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
}

.results-count {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
    background: #f8fafc;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.results-categories-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 2rem;
    position: relative;
}

.results-categories-container::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 100%;
    background: linear-gradient(to right, transparent, white);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.results-categories-container.scrollable::after {
    opacity: 1;
}

.results-categories-container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 100%;
    background: linear-gradient(to left, transparent, white);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.results-categories-container.scrollable::before {
    opacity: 1;
}

.categories-horizontal {
    display: flex;
    align-items: center;
    gap: 1rem;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding: 0.5rem 0;
    scroll-behavior: smooth;
    position: relative;
    scroll-padding: 0 1rem;
    -webkit-overflow-scrolling: touch; /* iOS smooth scrolling */
    scroll-snap-type: x proximity;
}

.categories-horizontal::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.category-link-horizontal {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f8fafc;
    color: #64748b;
    text-decoration: none;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    cursor: pointer;
    user-select: none;
    scroll-snap-align: start;
}

.category-link-horizontal:hover {
    background: #e2e8f0;
    color: #475569;
    border-color: #cbd5e1;
}

.category-link-horizontal.active {
    background: #000;
    color: white;
    border-color: #000;
}

.category-link-horizontal .category-count {
    background: rgba(255, 255, 255, 0.2);
    color: inherit;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.category-link-horizontal.active .category-count {
    background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 1024px) {
    .results-categories-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .results-categories-container::after,
    .results-categories-container::before {
        display: none;
    }
    
    .categories-horizontal {
        justify-content: flex-start;
        gap: 0.75rem;
        max-width: 100%;
        overflow-x: auto;
        padding: 0.5rem 0;
    }
    
    .category-link-horizontal {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .results-categories-container {
        gap: 0.75rem;
    }
    
    .categories-horizontal {
        gap: 0.5rem;
        padding: 0.25rem 0;
        margin: 0 -0.5rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .category-link-horizontal {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
        min-width: max-content;
    }
}

@media (max-width: 480px) {
    .results-categories-container {
        gap: 0.5rem;
    }
    
    .categories-horizontal {
        gap: 0.4rem;
        padding: 0.2rem 0;
        margin: 0 -0.25rem;
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }
    
    .category-link-horizontal {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
        border-radius: 16px;
    }
    
    .category-link-horizontal .category-count {
        font-size: 0.65rem;
        padding: 0.15rem 0.4rem;
    }
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: #e2e8f0;
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f8fafc;
}

.product-image-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    opacity: 0;
    transform: scale(1.05);
}

.product-image.active {
    opacity: 1;
    transform: scale(1);
}

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

.image-navigation {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.image-dots {
    display: flex;
    gap: 6px;
    background: rgba(0, 0, 0, 0.3);
    padding: 6px 12px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

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

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

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.25rem;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.action-btn {
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.action-btn:hover {
    background: #000000;
    color: white;
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.product-likes {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #ef4444;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-info {
    padding: 1.5rem;
}

.product-brand-model {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.product-brand {
    font-size: 0.85rem;
    font-weight: 700;
    color: #000000;
    background: #f1f5f9;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-model {
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    background: #f8fafc;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
}

.product-category {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
}

.product-sale {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    padding: 0.5rem 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.add-to-cart-btn {
    width: 100%;
    padding: 1rem;
    background: white;
    border: 2px solid #000000;
    color: #000000;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.add-to-cart-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 0.5s ease;
}

.add-to-cart-btn:hover::before {
    left: 100%;
}

.add-to-cart-btn:hover {
    background: #000000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid #f1f5f9;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.pagination-btn:hover {
    border-color: #000000;
    color: #000000;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.page-numbers {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.page-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-btn.active,
.page-btn:hover {
    background: #000000;
    border-color: #000000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.page-dots {
    color: #94a3b8;
    font-weight: 500;
    padding: 0 0.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-listing-container {
        grid-template-columns: 280px 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .search-sort-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .search-container {
        max-width: 100%;
    }
    
    .product-listing-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-filters {
        order: 2;
        position: static;
    }
    
    .product-content {
        order: 1;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .pagination {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .sort-layout-container {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .product-filters,
    .product-content {
        padding: 1.5rem;
    }
}

/* New Contact Hero Section Styles */
.contact-hero-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 4rem 0;
    margin-top: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero-section::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(59,130,246,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #1e293b 0%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero-description {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 400;
}

.contact-hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    min-width: 140px;
}

.hero-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.15);
    border-color: #000000;
}

.hero-feature i {
    font-size: 2rem;
    color: #000000;
    margin-bottom: 0.5rem;
}

.hero-feature span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
    text-align: center;
}

/* Responsive adjustments for hero section */
@media (max-width: 768px) {
    .contact-hero-section {
        padding: 3rem 0;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .contact-hero-features {
        gap: 1.5rem;
    }
    
    .hero-feature {
        min-width: 120px;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-feature {
        min-width: 200px;
    }
}

/* Footer Styles */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #333;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: #000000;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    word-break: break-word;
}

.contact-info i {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-info a {
    word-break: break-all;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.footer-bottom-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Responsive Design for Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 1.5rem 0 1rem;
    }
    
    .footer-content {
        gap: 1rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
    }
    
    .social-links {
        gap: 0.75rem;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        line-height: 36px;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .contact-info p {
        font-size: 0.85rem;
        gap: 0.4rem;
    }
    
    .footer-bottom-content p {
        font-size: 0.85rem;
    }
    
    .footer-bottom-links {
        gap: 0.75rem;
    }
    
    .footer-bottom-links a {
        font-size: 0.85rem;
    }
}

@media (max-width: 360px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .footer-section {
        padding: 0 0.5rem;
    }
    
    .social-links {
        gap: 0.5rem;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
        line-height: 32px;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Additional responsive improvements for very small screens */
@media (max-width: 320px) {
    .footer {
        padding: 1rem 0 0.5rem;
    }
    
    .footer-content {
        gap: 0.5rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1rem;
    }
    
    .footer-section p {
        font-size: 0.8rem;
    }
    
    .social-link {
        width: 28px;
        height: 28px;
        line-height: 28px;
    }
    
    .footer-links a {
        font-size: 0.8rem;
    }
    
    .contact-info p {
        font-size: 0.75rem;
    }
    
    .footer-bottom-content p {
        font-size: 0.75rem;
    }
    
    .footer-bottom-links a {
        font-size: 0.75rem;
    }
}

/* Landscape orientation fixes for mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .footer {
        padding: 1.5rem 0 0.5rem;
    }
    
    .footer-content {
        gap: 1rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        margin-bottom: 0.5rem;
    }
    
    .footer-section p {
        margin-bottom: 0.5rem;
    }
}

/* Enhanced About Page Styles */
.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

/* Company Overview Section */
.company-overview {
    background: #f8f9fa;
    padding: 4rem 0;
}

.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.overview-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.lead-text {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.overview-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.overview-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Mission & Vision Section */
.mission-vision {
    padding: 4rem 0;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mission-card,
.vision-card {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #000000, #333333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.mission-card p,
.vision-card p {
    color: #666;
    line-height: 1.7;
}

/* Core Values Section */
.core-values {
    background: #f8f9fa;
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #000000, #333333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 1.5rem;
    color: white;
}

.value-item h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #333;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

/* Why Choose Sug Section */
.why-choose {
    padding: 4rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #000000, #333333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.25rem;
    color: white;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Team Section */
.team-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

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

.team-member {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-photo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #000000, #333333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.member-photo i {
    font-size: 3rem;
    color: white;
}

.team-member h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.member-title {
    color: #000000;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: #666;
    line-height: 1.6;
}

/* Achievements Section */
.achievements {
    padding: 4rem 0;
}

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

.achievement-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-5px);
}

.achievement-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #000000, #333333);
    border-radius: 50%;
    display: flex;
 align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.achievement-icon i {
    font-size: 1.75rem;
    color: white;
}

.achievement-item h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #333;
}

.achievement-item p {
    color: #666;
    line-height: 1.6;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, #000000, #333333);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 200px;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        min-width: 250px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .overview-content h2 {
        font-size: 2rem;
    }
}

/* Responsive Hero Animations */
@media (max-width: 768px) {
    .hero-title-animated {
        animation: slideInFromLeft 1s ease-out 0.2s both;
    }
    
    .hero-subtitle-animated {
        animation: slideInFromRight 1s ease-out 0.4s both;
    }
    
    .hero-description-animated {
        animation: fadeInUp 1s ease-out 0.6s both;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}

/* ===== COMPREHENSIVE ANIMATIONS ===== */

/* Keyframe Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

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

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-200deg);
    }
    to {
        opacity: 1;
        transform: rotate(0);
    }
}

@keyframes flipInX {
    from {
        opacity: 0;
        transform: perspective(400px) rotateX(90deg);
    }
    40% {
        transform: perspective(400px) rotateX(-20deg);
    }
    60% {
        transform: perspective(400px) rotateX(10deg);
    }
    80% {
        transform: perspective(400px) rotateX(-5deg);
    }
    to {
        opacity: 1;
        transform: perspective(400px) rotateX(0deg);
    }
}

@keyframes flipInY {
    from {
        opacity: 0;
        transform: perspective(400px) rotateY(90deg);
    }
    40% {
        transform: perspective(400px) rotateY(-20deg);
    }
    60% {
        transform: perspective(400px) rotateY(10deg);
    }
    80% {
        transform: perspective(400px) rotateY(-5deg);
    }
    to {
        opacity: 1;
        transform: perspective(400px) rotateY(0deg);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-10px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(10px);
    }
}

@keyframes swing {
    20% {
        transform: rotate(15deg);
    }
    40% {
        transform: rotate(-10deg);
    }
    60% {
        transform: rotate(5deg);
    }
    80% {
        transform: rotate(-5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@keyframes wobble {
    0% {
        transform: translateX(0%);
    }
    15% {
        transform: translateX(-25%) rotate(-5deg);
    }
    30% {
        transform: translateX(20%) rotate(3deg);
    }
    45% {
        transform: translateX(-15%) rotate(-3deg);
    }
    60% {
        transform: translateX(10%) rotate(2deg);
    }
    75% {
        transform: translateX(-5%) rotate(-1deg);
    }
    100% {
        transform: translateX(0%);
    }
}

@keyframes tada {
    0% {
        transform: scale(1);
    }
    10%, 20% {
        transform: scale(0.9) rotate(-3deg);
    }
    30%, 50%, 70%, 90% {
        transform: scale(1.1) rotate(3deg);
    }
    40%, 60%, 80% {
        transform: scale(1.1) rotate(-3deg);
    }
    100% {
        transform: scale(1) rotate(0);
    }
}

@keyframes lightSpeedIn {
    from {
        opacity: 0;
        transform: translate3d(100%, 0, 0) skewX(-30deg);
    }
    60% {
        opacity: 1;
        transform: translate3d(-20%, 0, 0) skewX(30deg);
    }
    80% {
        transform: translate3d(10%, 0, 0) skewX(-10deg);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInUp {
    from {
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInDown {
    from {
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInLeft {
    from {
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    from {
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}

/* Animation Classes */
.animate {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animate.infinite {
    animation-iteration-count: infinite;
}

.animate.delay-1s {
    animation-delay: 1s;
}

.animate.delay-2s {
    animation-delay: 2s;
}

.animate.delay-3s {
    animation-delay: 3s;
}

.animate.fast {
    animation-duration: 0.5s;
}

.animate.slow {
    animation-duration: 2s;
}

/* Fade Animations */
.fade-in {
    animation-name: fadeIn;
}

.fade-in-up {
    animation-name: fadeInUp;
}

.fade-in-down {
    animation-name: fadeInDown;
}

.fade-in-left {
    animation-name: fadeInLeft;
}

.fade-in-right {
    animation-name: fadeInRight;
}

/* Slide Animations */
.slide-in-left {
    animation-name: slideInFromLeft;
}

.slide-in-right {
    animation-name: slideInFromRight;
}

.slide-in-top {
    animation-name: slideInFromTop;
}

.slide-in-bottom {
    animation-name: slideInFromBottom;
}

.slide-in-up {
    animation-name: slideInUp;
}

.slide-in-down {
    animation-name: slideInDown;
}

/* Scale and Transform Animations */
.scale-in {
    animation-name: scaleIn;
}

.bounce-in {
    animation-name: bounceIn;
}

.rotate-in {
    animation-name: rotateIn;
}

.flip-in-x {
    animation-name: flipInX;
}

.flip-in-y {
    animation-name: flipInY;
}

.zoom-in {
    animation-name: zoomIn;
}

/* Special Effects */
.pulse {
    animation-name: pulse;
    animation-iteration-count: infinite;
    animation-duration: 2s;
}

.shake {
    animation-name: shake;
}

.swing {
    animation-name: swing;
}

.wobble {
    animation-name: wobble;
}

.tada {
    animation-name: tada;
}

.light-speed-in {
    animation-name: lightSpeedIn;
}

/* Hover Animations */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.hover-scale {
    transition: transform 0.3s ease;
}

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

.hover-rotate {
    transition: transform 0.3s ease;
}

.hover-rotate:hover {
    transform: rotate(5deg);
}

.hover-glow {
    transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.5);
}

.hover-bounce {
    transition: transform 0.3s ease;
}

.hover-bounce:hover {
    animation: bounceIn 0.6s ease;
}

/* Staggered Animations for Lists */
.stagger-item:nth-child(1) { animation-delay: 0.1s; }
.stagger-item:nth-child(2) { animation-delay: 0.2s; }
.stagger-item:nth-child(3) { animation-delay: 0.3s; }
.stagger-item:nth-child(4) { animation-delay: 0.4s; }
.stagger-item:nth-child(5) { animation-delay: 0.5s; }
.stagger-item:nth-child(6) { animation-delay: 0.6s; }

/* Text Animation Classes */
.text-reveal {
    overflow: hidden;
}

.text-reveal span {
    display: inline-block;
    animation: slideInFromBottom 0.8s ease forwards;
    opacity: 0;
}

.text-reveal span:nth-child(1) { animation-delay: 0.1s; }
.text-reveal span:nth-child(2) { animation-delay: 0.2s; }
.text-reveal span:nth-child(3) { animation-delay: 0.3s; }
.text-reveal span:nth-child(4) { animation-delay: 0.4s; }
.text-reveal span:nth-child(5) { animation-delay: 0.5s; }

/* Loading Animations */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #000000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.loading-dots {
    display: inline-block;
}

.loading-dots::after {
    content: '';
    animation: dots 1.5s steps(5, end) infinite;
}

@keyframes dots {
    0%, 20% { content: ''; }
    40% { content: '.'; }
    60% { content: '..'; }
    80%, 100% { content: '...'; }
}

/* Parallax Effect */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Floating Animation */
.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Typing Effect */
.typing-effect {
    overflow: hidden;
    border-right: 2px solid #000000;
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #000000; }
}

/* Counter Animation */
.counter {
    display: inline-block;
    animation: countUp 2s ease-out forwards;
}

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

/* Progress Bar Animation */
.progress-bar {
    width: 0%;
    animation: progressFill 2s ease-out forwards;
}

@keyframes progressFill {
    to {
        width: 100%;
    }
}

/* Card Flip Animation */
.card-flip {
    perspective: 1000px;
}

.card-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.card-flip:hover .card-flip-inner {
    transform: rotateY(180deg);
}

.card-flip-front, .card-flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}

.card-flip-back {
    transform: rotateY(180deg);
}

/* Morphing Shapes */
.morph-shape {
    animation: morphShape 4s ease-in-out infinite;
}

@keyframes morphShape {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
}

/* Gradient Animation */
.gradient-bg {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

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

@media (max-width: 768px) {
    .animate {
        animation-duration: 0.8s;
    }
    
    .stagger-item:nth-child(n) {
        animation-delay: 0.1s !important;
    }
}

/* Print Styles - Disable Animations */
@media print {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Enhanced Responsive Design for Products Page */
@media (max-width: 1024px) {
    .product-listing-container {
        grid-template-columns: 250px 1fr;
        gap: 2rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .results-categories-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .results-categories-container::after,
    .results-categories-container::before {
        display: none;
    }
    
    .categories-horizontal {
        justify-content: flex-start;
        gap: 0.75rem;
        max-width: 100%;
        overflow-x: auto;
        padding: 0.5rem 0;
    }
    
    .category-link-horizontal {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .product-listing-main {
        margin-top: 0;
    }
    
    .product-search-section {
        padding: 1.5rem 0;
        margin-top: 70px;
    }
    
    .search-sort-container {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
    }
    
    .search-container {
        max-width: 100%;
    }
    
    .sort-layout-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .sort-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .layout-btn {
        padding: 0.75rem;
        min-width: 45px;
    }
    
    .product-listing-section {
        padding: 2rem 0;
    }
    
    .product-listing-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-filters {
        order: 2;
        position: static;
        padding: 1.5rem;
        margin-bottom: 1rem;
        border-radius: 12px;
    }
    
    .product-content {
        order: 1;
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .results-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .results-categories-container {
        gap: 0.75rem;
        width: 100%;
    }
    
    .categories-horizontal {
        gap: 0.5rem;
        padding: 0.25rem 0;
        margin: 0 -0.5rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .category-link-horizontal {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
        min-width: max-content;
        white-space: nowrap;
    }
    
    .pagination {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
        padding-top: 2rem;
    }
    
    .page-numbers {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .page-btn {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }
    
    .pagination-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
    
    /* Enhanced mobile filter styles */
    .filter-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .filter-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .filter-tags {
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    
    .filter-tag {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
        min-width: fit-content;
    }
    
    .price-filter {
        gap: 0.75rem;
    }
    
    .price-input-group {
        gap: 0.25rem;
    }
    
    .price-input {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .apply-filter-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .brand-filters {
        gap: 0.5rem;
    }
    
    .brand-checkbox {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
    
    .checkmark {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .product-search-section {
        padding: 1rem 0;
        margin-top: 65px;
    }
    
    .search-sort-container {
        gap: 1rem;
    }
    
    .sort-layout-container {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }
    
    .sort-btn {
        padding: 0.625rem 1rem;
        font-size: 0.8rem;
        justify-content: center;
    }
    
    .layout-btn {
        padding: 0.625rem;
        min-width: 40px;
        flex: 1;
    }
    
    .product-listing-section {
        padding: 1.5rem 0;
    }
    
    .product-listing-container {
        gap: 1rem;
    }
    
    .product-filters,
    .product-content {
        padding: 1rem;
        border-radius: 8px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .product-card {
        border-radius: 12px;
    }
    
    .product-image-container {
        height: 200px;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .product-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .product-price {
        font-size: 1.2rem;
        margin-bottom: 0.25rem;
    }
    
    .product-sale {
        font-size: 0.8rem;
        margin-bottom: 1rem;
        padding: 0.375rem 0.5rem;
    }
    
    .add-to-cart-btn {
        padding: 0.875rem;
        font-size: 0.9rem;
    }
    
    .results-header {
        gap: 0.75rem;
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }
    
    .results-categories-container {
        gap: 0.5rem;
    }
    
    .categories-horizontal {
        gap: 0.4rem;
        padding: 0.2rem 0;
        margin: 0 -0.25rem;
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }
    
    .category-link-horizontal {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
        border-radius: 16px;
    }
    
    .category-link-horizontal .category-count {
        font-size: 0.65rem;
        padding: 0.15rem 0.4rem;
    }
    
    .pagination {
        gap: 1rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .page-numbers {
        gap: 0.375rem;
    }
    
    .page-btn {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }
    
    .pagination-btn {
        padding: 0.625rem 1rem;
        font-size: 0.8rem;
        width: 100%;
        justify-content: center;
    }
    
    /* Enhanced small mobile filter styles */
    .filter-section {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .filter-title {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    
    .filter-tags {
        gap: 0.375rem;
    }
    
    .filter-tag {
        font-size: 0.75rem;
        padding: 0.375rem 0.625rem;
        border-radius: 20px;
    }
    
    .price-filter {
        gap: 0.5rem;
    }
    
    .price-input-group label {
        font-size: 0.8rem;
    }
    
    .price-input {
        padding: 0.5rem;
        font-size: 0.85rem;
    }
    
    .apply-filter-btn {
        padding: 0.625rem 1rem;
        font-size: 0.8rem;
    }
    
    .brand-filters {
        gap: 0.375rem;
    }
    
    .brand-checkbox {
        font-size: 0.8rem;
        padding: 0.375rem 0;
    }
    
    .checkmark {
        width: 16px;
        height: 16px;
    }
}

/* Extra small mobile devices */
@media (max-width: 360px) {
    .product-search-section {
        padding: 0.75rem 0;
        margin-top: 60px;
    }
    
    .search-input {
        padding: 0.875rem 0.875rem 0.875rem 2.5rem;
        font-size: 0.9rem;
    }
    
    .search-icon {
        font-size: 1rem;
        left: 0.875rem;
    }
    
    .product-filters,
    .product-content {
        padding: 0.75rem;
        border-radius: 6px;
    }
    
    .product-grid {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .product-image-container {
        height: 180px;
    }
    
    .product-info {
        padding: 0.75rem;
    }
    
    .product-title {
        font-size: 0.95rem;
    }
    
    .product-price {
        font-size: 1.1rem;
    }
    
    .product-sale {
        font-size: 0.75rem;
        padding: 0.25rem 0.375rem;
    }
    
    .add-to-cart-btn {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
    
    .filter-title {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .filter-tag {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
    
    .price-input {
        padding: 0.375rem;
        font-size: 0.8rem;
    }
    
    .apply-filter-btn {
        padding: 0.5rem 0.875rem;
        font-size: 0.75rem;
    }
    
    .brand-checkbox {
        font-size: 0.75rem;
    }
    
    .checkmark {
        width: 14px;
        height: 14px;
    }
}

/* Landscape orientation optimization for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .product-listing-main {
        margin-top: 0;
    }
    
    .product-search-section {
        padding: 1rem 0;
        margin-top: 60px;
    }
    
    .product-listing-container {
        gap: 1rem;
    }
    
    .product-filters {
        padding: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .product-content {
        padding: 1rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 0.75rem;
    }
    
    .product-image-container {
        height: 160px;
    }
    
    .product-info {
        padding: 0.75rem;
    }
    
    .product-title {
        font-size: 0.9rem;
        margin-bottom: 0.375rem;
    }
    
    .product-price {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }
    
    .product-sale {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
    
    .add-to-cart-btn {
        padding: 0.625rem;
        font-size: 0.8rem;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .product-card:hover {
        transform: none;
        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    }
    
    .product-card:active {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    }
    
    .filter-tag:active,
    .action-btn:active,
    .add-to-cart-btn:active,
    .pagination-btn:active,
    .page-btn:active {
        transform: scale(0.95);
    }
    
    .product-card:hover .product-overlay {
        opacity: 0;
    }
    
    .product-card:active .product-overlay {
        opacity: 1;
    }
    
    .product-card:hover .product-image {
        transform: none;
    }
    
    .product-card:active .product-image {
        transform: scale(1.05);
    }
}

/* High DPI display optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .product-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
    
    .filter-tag,
    .action-btn,
    .add-to-cart-btn,
    .pagination-btn,
    .page-btn {
        border-width: 1px;
    }
}

/* Print styles for products page */
@media print {
    .product-search-section,
    .product-filters,
    .pagination,
    .product-overlay,
    .action-btn {
        display: none !important;
    }
    
    .product-listing-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .product-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .product-image-container {
        height: 150px;
    }
    
    .add-to-cart-btn {
        display: none;
    }
}

/* Mobile Filter Toggle Styles */
.mobile-filter-toggle {
    display: none;
}

.mobile-filter-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 1.25rem;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    color: #475569;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.mobile-filter-btn:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mobile-filter-btn .toggle-icon {
    transition: transform 0.3s ease;
    color: #64748b;
}

.mobile-filter-btn[aria-expanded="true"] .toggle-icon {
    transform: rotate(180deg);
}

.filter-content {
    display: block;
}

/* Enhanced Responsive Design for Products Page */

/* No Filters Message Styles */
.no-filters-message {
    text-align: center;
    padding: 2rem 1rem;
    color: #64748b;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px dashed #cbd5e1;
}

.no-filters-message p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .no-filters-message {
        padding: 1.5rem 1rem;
    }
    
    .no-filters-message p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .no-filters-message {
        padding: 1rem 0.75rem;
    }
    
    .no-filters-message p {
        font-size: 0.8rem;
    }
}

/* Mobile Filter Toggle Styles */

/* Bootstrap Hero Carousel Custom Styles */
.hero-section {
    background: white;
    padding: 0;
    overflow: hidden;
    margin-top: 80px; /* Add top margin to account for fixed header */
    position: relative;
    z-index: 1; /* Ensure it's below the header */
    text-align: center;
}

.hero-section .carousel-item .row {
    width: 100%;
    margin: 0;
}

.hero-section .carousel {
    position: relative;
}

.hero-section .carousel-item {
    min-height: 75vh;
    background: white;
}

.hero-section .carousel-item .container {
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-section .min-vh-75 {
    min-height: 75vh;
}

.hero-section .hero-content {
    padding: 2rem 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-section .hero-cta {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
}

.hero-section .hero-image {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.hero-section .hero-content h1 {
    color: #000000;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-section .hero-content .lead {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #6c757d;
}

.hero-section .hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.3s ease;
    margin: 0 auto;
    display: block;
}

.hero-section .hero-image img:hover {
    transform: translateY(-5px);
}

.hero-section .btn-primary {
    background-color: #000000;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero-section .btn-primary:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

.hero-section .btn-primary {
    margin: 0 auto;
    display: block;
    width: fit-content;
}

.hero-section .hero-content .btn {
    margin: 0 auto;
    display: block;
    width: fit-content;
}

.hero-section .carousel-indicators {
    bottom: 2rem;
}

.hero-section .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(13, 110, 253, 0.5);
    border: 2px solid #fff;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.hero-section .carousel-indicators button.active {
    background-color: #0d6efd;
    transform: scale(1.2);
}

.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    border: 2px solid rgba(13, 110, 253, 0.3);
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.hero-section .carousel-control-prev:hover,
.hero-section .carousel-control-next:hover {
    background: rgba(13, 110, 253, 0.2);
    border-color: rgba(13, 110, 253, 0.5);
}

.hero-section .carousel-control-prev {
    left: 2rem;
}

.hero-section .carousel-control-next {
    right: 2rem;
}

/* Mobile Responsiveness */
@media (max-width: 991.98px) {
    .hero-section {
        margin-top: 70px; /* Slightly less margin on medium screens */
    }
    
    .hero-section .carousel-item {
        min-height: 60vh;
    }
    
    .hero-section .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-section .hero-content .lead {
        font-size: 1rem;
    }
    
    .hero-section .carousel-control-prev,
    .hero-section .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .hero-section .carousel-control-prev {
        left: 1rem;
    }
    
    .hero-section .carousel-control-next {
        right: 1rem;
    }
    
    /* Center buttons and images on tablets */
    .hero-section .hero-content {
        text-align: center !important;
    }
    
    .hero-section .hero-cta {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-section .hero-image {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    /* Center feature cards on tablets */
    .features-grid {
        text-align: center;
    }
    
    .feature-card {
        text-align: center;
    }
    
    .feature-card .btn {
        margin: 0 auto;
        display: block;
        width: fit-content;
    }
    
    /* Center offering items on tablets */
    .offering-item {
        text-align: center;
    }
    
    .offering-item .btn {
        margin: 0 auto;
        display: block;
        width: fit-content;
    }
    
    .offering-illustration {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    /* Center quote section on tablets */
    .quote-section .quote-cta {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .quote-btn {
        margin: 0 auto;
        display: block;
        width: fit-content;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        margin-top: 65px; /* Adjust margin for mobile screens */
    }
    
    .hero-section .carousel-item {
        min-height: 50vh;
    }
    
    .hero-section .hero-content {
        text-align: center !important;
        padding: 1.5rem 0;
    }
    
    .hero-section .hero-content h1 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-section .hero-content .lead {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .hero-section .hero-image {
        margin-top: 1rem;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-section .hero-image img {
        max-width: 90%;
        border-radius: 8px;
        margin: 0 auto;
        display: block;
    }
    
    .hero-section .hero-cta {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 1rem;
    }
    
    .hero-section .btn-primary {
        margin: 0 auto;
        display: block;
        width: fit-content;
    }
    
    .hero-section .carousel-indicators {
        bottom: 1rem;
    }
    
    .hero-section .carousel-indicators button {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }
    
    .hero-section .carousel-control-prev,
    .hero-section .carousel-control-next {
        width: 35px;
        height: 35px;
    }
    
    .hero-section .carousel-control-prev {
        left: 0.5rem;
    }
    
    .hero-section .carousel-control-next {
        right: 0.5rem;
    }
    
    /* Center all buttons and images on mobile */
    .btn {
        margin: 0 auto;
        display: block;
        width: fit-content;
        text-align: center;
    }
    
    .features-cta {
        text-align: center;
    }
    
    .features-cta .btn {
        margin: 0 auto;
        display: block;
        width: fit-content;
    }
    
    .feature-card {
        text-align: center;
    }
    
    .feature-card .btn {
        margin: 0 auto;
        display: block;
        width: fit-content;
    }
    
    .offering-item {
        text-align: center;
    }
    
    .offering-item .btn {
        margin: 0 auto;
        display: block;
        width: fit-content;
    }
    
    .offering-illustration {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .offering-img {
        margin: 0 auto;
        display: block;
    }
    
    .quote-section .quote-cta {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .quote-btn {
        margin: 0 auto;
        display: block;
        width: fit-content;
    }
    
    /* Center testimonials and FAQ buttons */
    .testimonials-section .btn,
    .faq-section .btn {
        margin: 0 auto;
        display: block;
        width: fit-content;
    }
    
    /* Center key benefits section */
    .key-benefits .btn {
        margin: 0 auto;
        display: block;
        width: fit-content;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        margin-top: 60px; /* Adjust margin for extra small screens */
    }
    
    .hero-section .carousel-item {
        min-height: 45vh;
    }
    
    .hero-section .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-section .hero-content .lead {
        font-size: 0.9rem;
    }
    
    .hero-section .btn-primary {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        background-color: #000000;
        margin: 0 auto;
        display: block;
        width: fit-content;
    }
    
    .hero-section .hero-image img {
        max-width: 85%;
        margin: 0 auto;
        display: block;
    }
    
    /* Ensure all buttons are centered on extra small screens */
    .btn {
        margin: 0 auto;
        display: block;
        width: fit-content;
        text-align: center;
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
    
    /* Center all images on extra small screens */
    .hero-image img,
    .offering-img,
    .feature-card img,
    .testimonial-card img {
        margin: 0 auto;
        display: block;
        max-width: 85%;
    }
    
    /* Center all content on extra small screens */
    .hero-content,
    .feature-card,
    .offering-item,
    .quote-content,
    .testimonial-card,
    .faq-item {
        text-align: center;
    }
    
    /* Ensure proper spacing and centering */
.hero-cta,
.features-cta,
.quote-cta {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

/* Additional Hero Section Centering Styles */
.hero-section .row {
    align-items: center;
    justify-content: center;
}

.hero-section .col-lg-6,
.hero-section .col-md-12 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-section .text-lg-start {
    text-align: center !important;
}

@media (min-width: 992px) {
    .hero-section .text-lg-start {
        text-align: left !important;
    }
    
    .hero-section .col-lg-6:first-child {
        align-items: flex-start;
    }
    
    .hero-section .col-lg-6:last-child {
        align-items: center;
    }
}

/* Additional Hero Section Enhancements */
.hero-section .carousel-item {
    padding: 2rem 0;
}

.hero-section .min-vh-75 {
    min-height: 75vh;
    display: flex;
    align-items: center;
}

.hero-section .mb-4 {
    margin-bottom: 1.5rem !important;
}

.hero-section .mb-lg-0 {
    margin-bottom: 0 !important;
}

@media (min-width: 992px) {
    .hero-section .mb-lg-0 {
        margin-bottom: 0 !important;
    }
}

@media (max-width: 991.98px) {
    .hero-section .mb-4 {
        margin-bottom: 1rem !important;
    }
    
    /* Ensure hero content is centered on tablets */
    .hero-section .hero-content {
        text-align: center !important;
    }
    
    .hero-section .hero-cta {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 1.5rem;
    }
    
    .hero-section .hero-image {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-section .hero-image img {
        margin: 0 auto;
        display: block;
    }
}

/* Lucky Draw Section Styles */
.lucky-draw-section {
    padding: 40px 0 !important;
    background: #f5f5f0 !important;
}

.lucky-draw-banner {
    background: #fefefe !important;
    border: 1px solid #000 !important;
    border-radius: 0 !important;
    overflow: hidden;
    box-shadow: none !important;
    max-width: 1000px;
    margin: 0 auto;
}

.lucky-draw-content {
    display: flex !important;
    min-height: 180px !important;
}

.lucky-draw-image {
    flex: 0 0 45% !important;
    position: relative;
    background: #f8f8f8 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 15px !important;
    border-right: 1px solid #000 !important;
    min-height: 160px !important;
    overflow: visible !important;
}

.lucky-draw-image .product-image {
    max-width: 100% !important;
    max-height: 140px !important;
    object-fit: contain !important;
    border-radius: 0 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.website-url {
    position: absolute !important;
    left: 8px !important;
    top: 50% !important;
    transform: translateY(-50%) rotate(-90deg) !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    color: #000 !important;
    letter-spacing: 0.5px !important;
    white-space: nowrap !important;
    font-family: Arial, sans-serif !important;
}

.lucky-draw-text {
    flex: 0 0 55% !important;
    background: #fefefe !important;
    padding: 25px 30px !important;
    position: relative;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.lucky-draw-title {
    font-size: 2.4rem !important;
    font-weight: 400 !important;
    color: #2c1810 !important;
    margin-bottom: 15px !important;
    font-family: 'Times New Roman', serif !important;
    font-style: italic !important;
    line-height: 1.1 !important;
    letter-spacing: 0.5px !important;
}

.lucky-draw-offer {
    margin-bottom: 20px !important;
}

.offer-text {
    font-size: 1.2rem !important;
    color: #2c1810 !important;
    margin: 0 !important;
    font-weight: 400 !important;
    line-height: 1.2 !important;
    font-family: 'Times New Roman', serif !important;
}

.lucky-draw-btn {
    background: #000 !important;
    color: #fff !important;
    padding: 10px 25px !important;
    text-decoration: none !important;
    border-radius: 2px !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    align-self: flex-start !important;
    font-family: Arial, sans-serif !important;
}

.lucky-draw-btn:hover {
    background: linear-gradient(135deg, #333 0%, #555 100%) !important;
    color: #fff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3) !important;
    border: 1px solid #000 !important;
}

.decorative-stars {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    bottom: 12px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

.star {
    color: #8b4513 !important;
    font-size: 1.2rem !important;
    font-weight: bold !important;
    transition: all 0.3s ease !important;
}

.star:hover {
    transform: scale(1.2) rotate(15deg) !important;
    color: #a0522d !important;
}

.lucky-draw-image .product-image {
    transition: all 0.3s ease !important;
}

.lucky-draw-image .product-image:hover {
    transform: scale(1.05) !important;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15)) !important;
}

.lucky-draw-banner {
    transition: all 0.3s ease !important;
}

.lucky-draw-banner:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-2px) !important;
}

/* Responsive Design for Lucky Draw Section */
@media (max-width: 768px) {
    .lucky-draw-content {
        flex-direction: column;
    }
    
    .lucky-draw-image {
        flex: none;
        border-right: none;
        border-bottom: 1px solid #000;
        min-height: 120px;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .lucky-draw-image .product-image {
        max-height: 100px !important;
        display: block !important;
        visibility: visible !important;
    }
    
    .lucky-draw-text {
        flex: none;
        padding: 20px;
    }
    
    .lucky-draw-title {
        font-size: 2rem;
    }
    
    .website-url {
        position: static;
        transform: none;
        text-align: center;
        margin-top: 8px;
        font-size: 10px;
    }
    
    .decorative-stars {
        position: static;
        flex-direction: row;
        justify-content: flex-end;
        gap: 8px;
        margin-top: 12px;
    }
}

@media (max-width: 480px) {
    .lucky-draw-section {
        padding: 20px 0;
    }
    
    .lucky-draw-banner {
        margin: 0 10px;
    }
    
    .lucky-draw-image {
        min-height: 100px !important;
        padding: 10px !important;
    }
    
    .lucky-draw-image .product-image {
        max-height: 80px !important;
        display: block !important;
        visibility: visible !important;
    }
    
    .lucky-draw-text {
        padding: 15px;
    }
    
    .lucky-draw-title {
        font-size: 1.6rem;
    }
    
    .offer-text {
        font-size: 1rem;
    }
    
    .lucky-draw-btn {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
}

/* Animation for carousel items */
.hero-section .carousel-item.active .hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-section .carousel-item.active .hero-image {
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}