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

:root {
    --primary-blue: #1E3A8A;
    --emerald-green: #10B981;
    --vibrant-orange: #FB923C; /* Lighter orange */
    --soft-white: #F9FAFB;
    --charcoal-gray: #111827;
    --gradient-primary: linear-gradient(135deg, #1E3A8A 0%, #10B981 100%);
    --gradient-hero: linear-gradient(135deg, #1E3A8A 0%, #10B981 30%, #FB923C 100%);
    --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    --shadow-soft: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-strong: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-colored: 0 10px 30px rgba(16, 185, 129, 0.3);
    --shadow-orange: 0 10px 30px rgba(251, 146, 60, 0.3);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--charcoal-gray);
    direction: rtl;
    background: var(--soft-white);
    animation: pageLoad 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Hero Section */
.hero {
    background: var(--gradient-hero);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideInUp 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.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="hero-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="40" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="40" cy="15" r="1.5" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-pattern)"/></svg>') repeat;
    animation: patternMove 40s linear infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(251, 146, 60, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(16, 185, 129, 0.2) 0%, transparent 50%);
    animation: gradientShift 8s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

.hero-logo {
    max-width: 160px;
    margin-bottom: 30px;
    background: var(--gradient-card);
    padding: 18px;
    border-radius: 18px;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: logoFloat 5s ease-in-out infinite, logoGlow 4s ease-in-out infinite alternate;
}

.hero-logo:hover {
    transform: translateY(-10px) scale(1.05) rotate(2deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 800;
    background: linear-gradient(45deg, #ffffff, #f3f4f6, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 3s ease-in-out infinite alternate, titleFloat 6s ease-in-out infinite;
    position: relative;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(45deg, var(--vibrant-orange), var(--emerald-green));
    border-radius: 2px;
    animation: lineGlow 2s ease-in-out infinite alternate;
}

.hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 35px;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.7;
    animation: fadeInUp 2s ease-out 0.4s both;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--emerald-green), #059669);
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-colored);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 2s ease-out 0.8s both, pulseGlow 4s ease-in-out infinite;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--vibrant-orange), #FB8C48);
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover::after {
    opacity: 1;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.6);
}

.cta-button:active {
    transform: translateY(-2px) scale(1.02);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Scroll progress bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(45deg, var(--emerald-green), var(--vibrant-orange));
    z-index: 1001;
    transition: width 0.1s ease;
}

/* About Section */
.about {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--soft-white) 0%, #f8fafc 100%);
    animation: sectionReveal 1s ease-out;
    position: relative;
}

.about::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="about-pattern" width="80" height="80" patternUnits="userSpaceOnUse"><circle cx="40" cy="40" r="1" fill="rgba(30,58,138,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23about-pattern)"/></svg>');
    animation: patternMove 60s linear infinite;
}

.about h2 {
    font-size: 3.5em;
    margin-bottom: 80px;
    color: var(--primary-blue);
    text-align: center;
    position: relative;
    font-weight: 800;
    animation: sectionReveal 1s ease-out 0.2s both;
}

.about h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(45deg, var(--emerald-green), var(--vibrant-orange));
    border-radius: 3px;
    animation: lineReveal 1s ease-out 0.6s both;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.about-text {
    font-size: 1.2em;
    line-height: 1.9;
    animation: slideInLeft 1s ease-out 0.4s both;
}

.about-text p {
    margin-bottom: 30px;
    position: relative;
    padding-left: 20px;
}

.about-text p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 80%;
    background: linear-gradient(180deg, var(--emerald-green), var(--vibrant-orange));
    border-radius: 2px;
}

.about-image {
    text-align: center;
    animation: slideInRight 1s ease-out 0.6s both;
}

.about-image img {
    width: 100%;
    max-width: 350px;
    border-radius: 25px;
    box-shadow: var(--shadow-strong);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: imageFloat 5s ease-in-out infinite, imageGlow 4s ease-in-out infinite alternate;
}

.about-image img:hover {
    transform: translateY(-10px) scale(1.02) rotate(1deg);
    box-shadow: 0 30px 70px rgba(0,0,0,0.2);
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.vision, .mission {
    background: var(--gradient-card);
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInUp 1s ease-out 0.8s both;
}

.vision::before, .mission::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(251, 146, 60, 0.15), transparent);
    transform: rotate(45deg);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}

.vision:hover::before, .mission:hover::before {
    transform: rotate(45deg) translate(50%, 50%);
}

.vision:hover, .mission:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(16, 185, 129, 0.25);
    border-color: rgba(16, 185, 129, 0.3);
}

.vision h3, .mission h3 {
    color: var(--primary-blue);
    margin-bottom: 25px;
    font-size: 1.8em;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.vision p, .mission p {
    position: relative;
    z-index: 1;
    line-height: 1.8;
    font-size: 1.1em;
}

/* Products Section */
.products {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--soft-white) 0%, #f1f5f9 100%);
    animation: sectionReveal 1s ease-out;
    position: relative;
}

.products::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="products-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1.5" fill="rgba(16,185,129,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23products-pattern)"/></svg>');
    animation: patternMove 50s linear infinite;
}

.products h2 {
    font-size: 3.5em;
    margin-bottom: 80px;
    color: var(--primary-blue);
    text-align: center;
    position: relative;
    font-weight: 800;
    animation: sectionReveal 1s ease-out 0.3s both;
}

.products h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(45deg, var(--emerald-green), var(--vibrant-orange));
    border-radius: 3px;
    animation: lineReveal 1s ease-out 0.7s both;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 60px;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

.product-card {
    background: var(--gradient-card);
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInUp 1s ease-out 0.5s both;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 146, 60, 0.15), transparent);
    transition: left 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-15px) rotate(1deg) scale(1.02);
    box-shadow: var(--shadow-strong);
    border-color: rgba(251, 146, 60, 0.3);
}

.product-card h3 {
    font-size: 2.2em;
    color: var(--emerald-green);
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.product-card p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.images-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.images-section img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: imageFloat 4s ease-in-out infinite;
}

.images-section img:nth-child(2) {
    animation-delay: -1s;
}

.images-section img:nth-child(3) {
    animation-delay: -2s;
}

.images-section img:hover {
    transform: scale(1.1) rotate(5deg) translateY(-5px);
    box-shadow: var(--shadow-orange);
}

.product-card ul {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 1;
}

.product-card ul li {
    background: var(--gradient-card);
    margin: 15px 0;
    padding: 18px 20px;
    border-radius: 12px;
    border-right: 4px solid var(--emerald-green);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    font-size: 1.05em;
    backdrop-filter: blur(10px);
}

.product-card ul li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 146, 60, 0.1), transparent);
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card ul li:hover::before {
    left: 100%;
}

.product-card ul li:hover {
    transform: translateX(-8px);
    border-right-color: var(--vibrant-orange);
    box-shadow: var(--shadow-orange);
    background: rgba(255, 255, 255, 0.9);
}

/* Secure Payment Section */
.secure-payment {
    background: linear-gradient(135deg, #1E3A8A 0%, #1e40af 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.secure-payment h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
}

.payment-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.payment-feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.payment-feature:hover {
    background: rgba(251, 146, 60, 0.2);
    transform: translateY(-5px);
}

.payment-feature h4 {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: var(--vibrant-orange);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: white;
    animation: fadeInUp 1s ease-out;
}

.services h2 {
    font-size: 2.8em;
    margin-bottom: 60px;
    color: #1E3A8A;
    text-align: center;
    position: relative;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: linear-gradient(135deg, #F9FAFB 0%, #f3f4f6 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--emerald-green), var(--vibrant-orange));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--vibrant-orange);
    box-shadow: 0 20px 40px rgba(251, 146, 60, 0.2);
}

.service-card h4 {
    color: #1E3A8A;
    margin-bottom: 20px;
    font-size: 1.4em;
    position: relative;
    z-index: 1;
}

.service-card p {
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

/* Offers Section */
.offers {
    background: linear-gradient(135deg, var(--vibrant-orange) 0%, #FB8C48 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.offers h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.offer-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.offer-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.offer-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #F9FAFB 0%, #e5e7eb 100%);
    animation: fadeInUp 1s ease-out;
}

.contact h2 {
    font-size: 2.8em;
    margin-bottom: 40px;
    color: #1E3A8A;
    text-align: center;
    position: relative;
    animation: fadeInUp 1s ease-out 1s both;
}

.contact-intro {
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 60px;
    color: #111827;
    opacity: 0.8;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.contact-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 146, 60, 0.1), transparent);
    transition: left 0.6s ease;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(251, 146, 60, 0.2);
    border: 2px solid var(--vibrant-orange);
}

.contact-item h4 {
    color: #1E3A8A;
    margin-bottom: 20px;
    font-size: 1.3em;
}

.contact-item a {
    color: #10B981;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--vibrant-orange);
    text-decoration: underline;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #111827 0%, #374151 100%);
    color: white;
    text-align: center;
    padding: 50px 0;
    border-top: 5px solid #10B981;
    animation: fadeInUp 1s ease-out 1.2s both;
}

footer p {
    margin: 10px 0;
    font-size: 1em;
}

footer .highlight {
    color: var(--vibrant-orange);
    font-weight: bold;
}

/* Advanced Animations */
@keyframes pageLoad {
    0% {
        opacity: 0;
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes logoGlow {
    0% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }
    100% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 255, 255, 0.3);
    }
}

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

@keyframes lineGlow {
    0% {
        opacity: 0.6;
        transform: translateX(-50%) scaleX(0.8);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) scaleX(1);
    }
}

@keyframes patternMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

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

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes lineReveal {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 120px;
        opacity: 1;
    }
}

@keyframes imageGlow {
    0% {
        box-shadow: var(--shadow-strong);
    }
    100% {
        box-shadow: var(--shadow-strong), 0 0 30px rgba(16, 185, 129, 0.4);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: var(--shadow-colored);
        transform: scale(1);
    }
    50% {
        box-shadow: var(--shadow-colored), 0 0 40px rgba(16, 185, 129, 0.6);
        transform: scale(1.02);
    }
}

/* Mobile Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 3em;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .vision-mission {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0 40px;
        height: 100vh;
    }
    
    .hero h1 {
        font-size: 2.5em;
    }
    
    .hero-subtitle {
        font-size: 1.1em;
        margin-bottom: 25px;
    }
    
    .cta-button {
        padding: 14px 30px;
        font-size: 1em;
    }
    
    .hero-logo {
        max-width: 130px;
        margin-bottom: 20px;
    }
    
    .about,
    .products,
    .services,
    .contact {
        padding: 60px 0;
    }
    
    .about h2,
    .products h2,
    .services h2,
    .contact h2 {
        font-size: 2.8em;
        margin-bottom: 60px;
    }
    
    .vision-mission {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-card {
        padding: 40px 30px;
    }
    
    .images-section {
        gap: 15px;
    }
    
    .images-section img {
        width: 85px;
        height: 85px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card {
        padding: 35px 25px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-item {
        padding: 35px 25px;
    }
    
    .offer-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .payment-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 0 30px;
        height: 100vh;
    }
    
    .hero h1 {
        font-size: 2em;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1em;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 0.9em;
    }
    
    .hero-logo {
        max-width: 110px;
        margin-bottom: 15px;
        padding: 15px;
    }
    
    .about h2,
    .products h2,
    .services h2,
    .contact h2 {
        font-size: 2.2em;
    }
    
    .product-card {
        padding: 30px 20px;
    }
    
    .product-card h3 {
        font-size: 1.8em;
    }
    
    .images-section img {
        width: 70px;
        height: 70px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .contact-item {
        padding: 30px 20px;
    }
    
    .payment-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .payment-feature {
        padding: 25px 15px;
    }
    
    .payment-feature h4 {
        font-size: 1.1em;
    }
}

    /* Micro-interactions and Performance Optimizations */
.vision, .mission, .product-card, .service-card, .contact-item, .offer-card {
    will-change: transform;
}

.images-section img {
    will-change: transform;
}

.cta-button {
    will-change: transform;
}

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus states for accessibility */
.cta-button:focus,
.contact-item a:focus {
    outline: 3px solid var(--vibrant-orange);
    outline-offset: 2px;
}

/* Loading animation */
@keyframes shimmer {
    0% {
        background-position: -468px 0;
    }
    100% {
        background-position: 468px 0;
    }
}

.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* Glassmorphism utilities */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Gradient text utilities */
.gradient-text {
    background: linear-gradient(45deg, var(--emerald-green), var(--vibrant-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hover scale utilities */
.hover-scale {
    transition: transform 0.3s ease;
}

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

/* Button ripple effect */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ripple:active::after {
    width: 300px;
    height: 300px;
}

/* Scroll animations */
@keyframes slideInFromBottom {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

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

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

/* Enhanced backdrop filters for modern browsers */
@supports (backdrop-filter: blur(15px)) {
    .vision,
    .mission,
    .product-card,
    .service-card,
    .contact-item,
    .offer-card {
        backdrop-filter: blur(15px) saturate(180%);
    }
}

/* Print styles */
@media print {
    .cta-button {
        display: none;
    }
    
    .hero {
        background: none;
        color: black;
    }
    
    body {
        background: white;
        color: black;
    }
}