/* assets/css/style.css - Main Stylesheet */

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

:root {
    --primary-orange: #FFA726;
    --dark-navy: #1a2332;
    --darker-navy: #0f1419;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --accent-yellow: #FFB300;
}

body {
    font-family: 'Archivo', sans-serif;
    color: var(--darker-navy);
    overflow-x: hidden;
    background: var(--light-gray);
}

/* Header */
.top-bar {
    background: var(--darker-navy);
    color: white;
    padding: 12px 0;
    font-size: 14px;
}

.top-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-info {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
}

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

.top-actions a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.top-actions a:hover {
    color: var(--primary-orange);
}

/* Navigation */
nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.5s ease-out;
}

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

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

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

.logo-icon {
    height: 60px;
    transition: transform 0.3s;
}

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

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

.nav-menu a {
    text-decoration: none;
    color: var(--darker-navy);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-orange);
    transition: width 0.3s;
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-orange);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dark-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-btn:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    background: linear-gradient(135deg, var(--darker-navy) 0%, var(--dark-navy) 100%);
    overflow: hidden;
}

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

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 55%;
    background: linear-gradient(to right, var(--dark-navy) 0%, transparent 30%, transparent 100%);
    opacity: 0.3;
    animation: parallaxFloat 20s ease-in-out infinite;
}

@keyframes parallaxFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.02); }
}

.hero-content {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.hero-label {
    font-family: 'Oswald', sans-serif;
    color: var(--primary-orange);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 7vw, 90px);
    line-height: 1;
    color: white;
    margin-bottom: 25px;
    max-width: 800px;
    letter-spacing: 2px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-title .highlight {
    color: var(--primary-orange);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

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

/* Search Section */
.search-section {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 30px 40px;
    border-radius: 12px;
    max-width: 1000px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

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

.search-input {
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Archivo', sans-serif;
    transition: all 0.3s;
    background: white;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 167, 38, 0.1);
}

.search-btn {
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-yellow));
    color: white;
    border: none;
    padding: 18px 50px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 167, 38, 0.3);
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 167, 38, 0.4);
}

/* About Section */
.about-section {
    padding: 120px 40px;
    background: white;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-yellow));
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.about-image:nth-child(1) { animation-delay: 0.2s; }
.about-image:nth-child(2) { animation-delay: 0.4s; margin-top: 40px; }
.about-image:nth-child(3) { animation-delay: 0.6s; }

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

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 35, 50, 0.2);
    transition: opacity 0.3s;
}

.about-image:hover::after {
    opacity: 0;
}

.badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 20px;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: center;
    z-index: 2;
}

.badge-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 28px;
    color: white;
}

.about-content .section-label {
    font-family: 'Oswald', sans-serif;
    color: var(--primary-orange);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.about-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 52px);
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.about-text {
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.cta-btn {
    display: inline-block;
    background: var(--dark-navy);
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 20px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.cta-btn:hover {
    background: var(--primary-orange);
    transform: translateX(5px);
}

/* Process Section */
.process-section {
    padding: 100px 40px;
    background: var(--light-gray);
}

.process-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.section-header {
    margin-bottom: 70px;
}

.section-header .section-label {
    font-family: 'Oswald', sans-serif;
    color: var(--primary-orange);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 52px);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.section-header p {
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

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

.process-card {
    position: relative;
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 12px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.process-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.process-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--dark-navy), var(--darker-navy));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.process-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 25px;
    font-size: 32px;
    color: white;
}

.process-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.process-card p {
    color: var(--medium-gray);
    line-height: 1.6;
    font-size: 15px;
}

/* Features Section */
.features-section {
    padding: 100px 40px;
    background: white;
}

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

.feature-card {
    padding: 45px 35px;
    background: var(--light-gray);
    border-radius: 12px;
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.feature-card:hover {
    background: white;
    border-left-color: var(--primary-orange);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transform: translateX(5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-yellow));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 32px;
    color: white;
}

.feature-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: var(--medium-gray);
    line-height: 1.7;
}

/* Featured Products */
.featured-products {
    padding: 100px 40px;
    background: white;
}

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

.featured-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    cursor: pointer;
}

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

.featured-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
}

.featured-info {
    padding: 30px;
}

.featured-category {
    display: inline-block;
    background: var(--primary-orange);
    color: white;
    padding: 6px 15px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.featured-name {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--darker-navy);
}

.featured-price {
    color: var(--primary-orange);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.featured-btn {
    display: inline-block;
    background: var(--dark-navy);
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.featured-btn:hover {
    background: var(--primary-orange);
}

/* Testimonials */
.testimonials-section {
    padding: 100px 40px;
    background: var(--dark-navy);
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.testimonial-card {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}

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

.quote-icon {
    font-size: 48px;
    color: var(--primary-orange);
    margin-bottom: 20px;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: rgba(255,255,255,0.85);
}

.testimonial-author {
    display: flex;
    gap: 15px;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.author-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: var(--primary-orange);
}

/* CTA Section */
.cta-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, var(--darker-navy), var(--dark-navy));
    position: relative;
    overflow: hidden;
}

.cta-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 1200 600"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    color: white;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-yellow));
    color: white;
    padding: 20px 60px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(255, 167, 38, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 167, 38, 0.4);
}

/* Newsletter */
.newsletter-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-yellow));
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.newsletter-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    color: white;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 30px auto 0;
}

.newsletter-input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
}

.newsletter-btn {
    background: var(--dark-navy);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.newsletter-btn:hover {
    background: var(--darker-navy);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: var(--darker-navy);
    color: white;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-about h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-about p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-column h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 600;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-orange);
    transform: translateX(5px);
}

.footer-column p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 15px;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .search-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }
}