/* Modern, simple styling for EquiHUB website */
body {
    margin: 0;
    font-family: 'Inder', Arial, sans-serif;
    background: #fff;
    color: #222;
    min-height: 100vh;
}

/* Navbar styles */
/* Navbar styles */
.navbar {
    background: linear-gradient(135deg, #f99471 0%, #f60f5c 100%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    font-family: 'Inder', Arial, sans-serif;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(249, 148, 113, 0.3);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 1001;
}

.navbar-logo {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    object-fit: cover;
    padding: 4px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}

.navbar-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.navbar-menu {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-link {
    display: block;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    backdrop-filter: blur(10px);
    transform: translateY(-1px);
}

.navbar-actions {
    display: flex;
    align-items: center;
}

.btn-download {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-download:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-download svg {
    width: 18px;
    height: 18px;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}
/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

main {
    padding-top: 70px; /* Account for fixed navbar */
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9ff 0%, #fff5f8 100%);
    padding: 4rem 0;
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    color: #2c2c2c;
}

.hero .brand {
    background: linear-gradient(135deg, #f99471 0%, #f60f5c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #666;
    margin: 0 0 1.5rem 0;
    font-weight: 400;
}

.hero-description {
    font-size: 1.1rem;
    color: #777;
    line-height: 1.6;
    margin: 0 0 2.5rem 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta.primary {
    background: linear-gradient(135deg, #f99471 0%, #f60f5c 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(249, 148, 113, 0.4);
}

.cta.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 148, 113, 0.5);
}

.cta.secondary {
    background: transparent;
    color: #f60f5c;
    border: 2px solid #f60f5c;
}

.cta.secondary:hover {
    background: #f60f5c;
    color: white;
    transform: translateY(-2px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: linear-gradient(135deg, #f99471 0%, #f60f5c 100%);
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    margin: 0 0 3rem 0;
    color: #2c2c2c;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

        .feature-icon {
            font-size: 3rem;
            margin-right: 0.75rem;
            display: inline-block;
            vertical-align: middle;
        }

        .feature-card h3 {
            font-size: 1.4rem;
            margin: 0 0 1rem 0;
            color: #2c2c2c;
            font-weight: 500;
            display: flex;
            align-items: center;
        }.feature-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Download Section */
.download-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #fff5f8 100%);
    padding: 6rem 0;
    text-align: center;
}

.download-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin: 0 0 1rem 0;
    color: #2c2c2c;
}

.download-section p {
    font-size: 1.2rem;
    color: #666;
    margin: 0 0 3rem 0;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.download-btn {
    background: #000;
    color: white;
    padding: 1rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 180px;
    transition: transform 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-3px);
}

.store-text {
    font-size: 0.8rem;
    opacity: 0.8;
}

.store-name {
    font-size: 1.2rem;
    font-weight: 600;
}
/* Footer */
.footer {
    background: #2c2c2c;
    color: #fff;
    padding: 3rem 0 1rem 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin: 0 0 1rem 0;
    color: #fff;
    font-weight: 600;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin: 0.5rem 0;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #f99471;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    color: #ccc;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid #555;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-links a:hover {
    background: linear-gradient(135deg, #f99471 0%, #f60f5c 100%);
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #444;
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #888;
    margin: 0;
    font-size: 0.9rem;
}

/* Page Content Styles */
.page-content {
    padding: 4rem 0;
    min-height: calc(100vh - 70px - 200px); /* Account for navbar and footer */
}

.page-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin: 0 0 2rem 0;
    color: #2c2c2c;
    text-align: center;
}

.content-card {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    max-width: 800px;
    margin: 0 auto;
}

.content-card h2 {
    color: #2c2c2c;
    font-size: 1.4rem;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.content-card h3 {
    color: #2c2c2c;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem 0;
    font-weight: 600;
}

.content-card p {
    color: #666;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.content-card ul, .content-card ol {
    color: #666;
    line-height: 1.6;
    margin: 0 0 1rem 0;
    padding-left: 2rem;
}

.content-card li {
    margin: 0.5rem 0;
}

.content-card strong {
    color: #2c2c2c;
}
/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
}

@media (max-width: 900px) {
    .navbar-menu {
        gap: 0.25rem;
    }
    
    .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .btn-download {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 700px) {
    .navbar-toggle {
        display: flex;
    }
    .navbar-content {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, #f99471 0%, #f60f5c 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        backdrop-filter: blur(10px);
    }
    .navbar-content.active {
        left: 0;
    }
    .navbar-menu {
        flex-direction: column;
        gap: 0.5rem;
        width: 90%;
    }
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 1rem;
        font-size: 1rem;
    }
    .navbar-actions {
        margin-top: 2rem;
        width: 90%;
    }
    .btn-download {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }
    .hero {
        flex-direction: column;
        padding: 2rem 0 1rem 0;
        min-height: unset;
    }
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    .hero-visual {
        margin-top: 2rem;
        justify-content: center;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .cta-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 0.75rem;
    }
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    .phone-mockup {
        width: 180px;
        height: 340px;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .feature-icon {
        font-size: 1.5rem;
        margin-right: 0.5rem;
        display: inline-block;
    }
    .feature-card h3 {
        display: flex;
        align-items: center;
        font-size: 1.2rem;
    }
    .content-card {
        padding: 1.2rem;
    }
    .page-title {
        font-size: 1.5rem;
    }
}

/* About Page Styles */
.about-header {
    text-align: center;
    padding: 1.5rem 0;
    background: linear-gradient(135deg, rgba(249, 148, 113, 0.1) 0%, rgba(246, 15, 92, 0.1) 100%);
    border-radius: 20px;
    margin-bottom: 2.5rem;
}

.about-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.about-app-icon {
    width: 120px;
    height: 120px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(249, 148, 113, 0.3);
    margin-bottom: -20px;
}

.about-app-name {
    font-size: 4rem;
    font-weight: bold;
    background: linear-gradient(135deg, #f99471 0%, #f60f5c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.about-version {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
    margin-bottom: -20px;
}

.about-content {
    line-height: 1.7;
}

.section-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 2.5rem 0 1rem 0;
    color: #333;
    border-left: 4px solid;
    border-image: linear-gradient(135deg, #f99471 0%, #f60f5c 100%) 1;
    padding-left: 1rem;
}

.section-title:first-of-type {
    margin-top: 0;
}

.feature-item {
    background: rgba(249, 148, 113, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1.5rem 0;
    border-left: 4px solid;
    border-image: linear-gradient(135deg, #f99471 0%, #f60f5c 100%) 1;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 148, 113, 0.15);
    background: rgba(249, 148, 113, 0.08);
}

.feature-item h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 0 0.8rem 0;
    color: #333;
}

.feature-item p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

.about-footer {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(249, 148, 113, 0.1) 0%, rgba(246, 15, 92, 0.1) 100%);
    border-radius: 20px;
    border: 2px solid rgba(249, 148, 113, 0.2);
}

.about-footer p {
    margin: 0.5rem 0;
}

.about-footer strong {
    background: linear-gradient(135deg, #f99471 0%, #f60f5c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mobile styles for about page */
@media (max-width: 768px) {
    .about-app-icon {
        width: 80px;
        height: 80px;
        margin-bottom: -20px;
    }
    
    .about-app-name {
        font-size: 2.5rem;
    }
    
    .about-version {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.3rem;
        margin: 2rem 0 0.8rem 0;
    }
    
    .feature-item {
        padding: 1.2rem;
        margin: 1rem 0;
    }
    
    .feature-item h3 {
        font-size: 1.1rem;
    }
    
    .about-header, .about-footer {
        padding: 1.5rem;
    }
}
