/* ========================================
   FULLSCREEN HERO SECTION
   ======================================== */
.hero-fullscreen {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    background: linear-gradient(135deg, #faf8f5 0%, #f0ede8 100%);
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-fullscreen-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
}

.hero-fullscreen-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 90vh;
    padding: 140px 0 80px;
}

.hero-fullscreen-text {
    z-index: 2;
}

.hero-fullscreen-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1a1a2e;
}

.hero-fullscreen-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-fullscreen-phone {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.hero-phone-hand-image {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 20px;
    box-shadow: none;
    animation: phoneFloat 6s ease-in-out infinite;
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
}

/* ========================================
   ABOUT SECTION - 4 CARDS IN ONE ROW
   ======================================== */
.about-modern {
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    padding: 100px 0;
}

.about-content-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   MODERN PRODUCT CATEGORIES
   ======================================== */
.product-categories-modern {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.product-categories-modern .container {
    max-width: 100%;
    padding: 0;
}

.product-categories-modern .section-header {
    padding: 0 60px;
    margin-bottom: 60px;
}

.categories-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    max-width: 100%;
    margin: 0;
}

.category-modern {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: none;
}

.category-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.category-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    /* Reduced height for better fit */
    overflow: hidden;
    background: #fcfcfc;
    /* Very light defining background */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    /* More breathing room */
    border-bottom: 1px solid #f0f0f0;
}

.category-image-wrapper img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.category-modern:hover .category-image-wrapper img {
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(144, 195, 70, 0.9) 0%, rgba(233, 33, 38, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-modern:hover .category-overlay {
    opacity: 1;
}

.category-overlay i {
    font-size: 3rem;
    color: white;
}

.category-info {
    padding: 25px;
    background: white;
    text-align: center;
}

.category-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.category-info p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

/* Category Popup */
.category-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10001;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.category-popup-content {
    position: relative;
    background: white;
    border-radius: 30px;
    max-width: 900px;
    width: 90%;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

.category-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    color: #333;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.category-popup-close:hover {
    background: var(--secondary-color);
    color: white;
    transform: rotate(90deg);
}

.category-popup-content img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.category-popup-info {
    padding: 40px;
    text-align: center;
}

.category-popup-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.category-popup-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

/* ========================================
   MODERN TESTIMONIALS SLIDER
   ======================================== */
.testimonials-modern {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
}

.testimonials-modern .container {
    max-width: 1400px;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonials-track {
    position: relative;
    min-height: 350px;
}

.testimonial-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.testimonial-modern.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.testimonial-stars {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 25px;
}

.testimonial-stars i {
    color: #FFD700;
    font-size: 1.3rem;
}

.testimonial-modern p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    font-style: italic;
    margin-bottom: 30px;
    text-align: center;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.author-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.author-info span {
    font-size: 0.95rem;
    color: #666;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.slider-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-btn-prev {
    left: 0;
}

.slider-btn-next {
    right: 0;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* ========================================
   MODERN APP DOWNLOAD SECTION
   ======================================== */
.app-download-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #2d3436 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.app-download-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(144, 195, 70, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.app-download-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.app-download-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.app-download-text {
    color: white;
}

.app-badge {
    display: inline-block;
    background: rgba(144, 195, 70, 0.2);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.app-download-text h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.app-download-text>p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
}

.app-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.app-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.app-feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.app-feature-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.app-store-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.app-store-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 30px;
    border-radius: 15px;
    color: white;
    transition: all 0.3s ease;
}

.app-store-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.app-store-btn i {
    font-size: 2.5rem;
}

.app-store-btn div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.app-store-btn span {
    font-size: 0.75rem;
    opacity: 0.8;
}

.app-store-btn strong {
    font-size: 1.2rem;
    font-weight: 600;
}

.app-download-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.app-phone-mockup {
    width: 100%;
    max-width: 350px;
}

.app-phone-mockup img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.app-qr-codes {
    display: flex;
    gap: 30px;
}

.qr-code-item {
    text-align: center;
}

.qr-code-item img {
    width: 100px;
    height: 100px;
    border-radius: 15px;
    background: white;
    padding: 10px;
    margin-bottom: 10px;
}

.qr-code-item span {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* ========================================
   ENHANCED FOOTER
   ======================================== */
.footer-about p {
    max-width: 300px;
    line-height: 1.8;
}

.footer-stats-mini {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.stat-mini {
    display: flex;
    flex-direction: column;
}

.stat-mini strong {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.stat-mini span {
    font-size: 0.85rem;
    color: #999;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.footer-section ul li a i {
    font-size: 0.7rem;
    color: var(--primary-color);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact li i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-top: 3px;
}

.footer-contact li div {
    flex: 1;
}

.footer-contact li strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.footer-contact li a,
.footer-contact li span {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact li a:hover {
    color: var(--primary-color);
}

.footer-app-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(144, 195, 70, 0.1);
    padding: 12px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.footer-app-btn:hover {
    background: rgba(144, 195, 70, 0.2);
    transform: translateX(5px);
}

.footer-app-btn i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.footer-app-btn span {
    color: #ccc;
    font-size: 0.95rem;
}

.footer-qr-codes {
    display: flex;
    gap: 15px;
}

.footer-qr-item img {
    width: 70px;
    height: 70px;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
}

.footer-copyright p {
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #999;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-links span {
    color: #555;
}