/* 
 * Gradient Momentum - Main Stylesheet
 * A simplified, consolidated stylesheet for the business website
 */

/* Base Styles */
:root {
    --primary-color: #0a1930;
    --secondary-color: #3b82f6;
    --accent-color: #10b981;
    --dark-color: #111827;
    --light-color: #f9fafb;
    --text-color: #374151;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light-color);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 16px 0;
    z-index: 1000;
}

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

.logo {
    font-size: 28px;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-gradient {
    color: var(--secondary-color);
    margin-right: 5px;
}

.logo-momentum {
    color: var(--primary-color);
}

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

.nav-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary-color);
}

.nav-button {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background-color: var(--white);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-headline {
    font-size: 56px;
    margin-bottom: 24px;
    color: var(--primary-color);
    font-weight: 800;
}

.hero-headline span {
    color: var(--secondary-color);
}

.hero-subheadline {
    font-size: 20px;
    margin-bottom: 40px;
}

.hero-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-button:hover {
    background-color: #2563eb;
    transform: translateY(-3px);
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-light {
    background-color: var(--light-color);
}

.section-white {
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 20px;
    margin: 0 auto;
    max-width: 700px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 30px;
}

.service-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-text {
    margin-bottom: 25px;
    font-size: 18px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-title {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.about-text {
    font-size: 18px;
    margin-bottom: 30px;
}

.about-list {
    list-style: none;
    margin-bottom: 30px;
}

.about-list-item {
    margin-bottom: 20px;
    font-size: 18px;
    position: relative;
    padding-left: 25px;
}

.about-list-item strong {
    color: var(--primary-color);
    font-weight: 700;
    white-space: nowrap;
    display: block;
    margin-bottom: 5px;
}

.about-list-item:before {
    content: "•";
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: 0;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), #1e40af);
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 36px;
    margin-bottom: 24px;
}

.cta-text {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 800;
}

.footer-logo span {
    color: var(--secondary-color);
}

.footer-contact a {
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.footer-contact a:hover {
    color: var(--secondary-color);
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.footer-copyright {
    text-align: center;
    opacity: 0.7;
    font-size: 16px;
}

/* Mobile menu */
.mobile-menu-button {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
}

.hamburger {
    width: 30px;
    height: 20px;
    position: relative;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2), .hamburger span:nth-child(3) {
    top: 8px;
}

.hamburger span:nth-child(4) {
    top: 16px;
}

.hamburger.active span:nth-child(1),
.hamburger.active span:nth-child(4) {
    opacity: 0;
}

.hamburger.active span:nth-child(2) {
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
}

/* Service Page Styles */
.service-hero {
    padding: 180px 0 80px;
    background-color: var(--white);
}

.service-hero-title {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-hero-subtitle {
    font-size: 20px;
    max-width: 800px;
    margin-bottom: 30px;
}

.service-detail {
    padding: 80px 0;
}

.service-section {
    margin-bottom: 60px;
}

.service-section-title {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.service-section-title:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 28px;
    background-color: var(--secondary-color);
    border-radius: 4px;
}

.service-detail-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-cta {
    background-color: var(--light-color);
    padding: 60px 0;
    text-align: center;
    margin-top: 40px;
}

.service-cta-title {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-cta-text {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container, .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image, .about-image {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: 42px;
    }
    
    .section-title, .about-title {
        font-size: 36px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .mobile-menu-button {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--white);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        display: none;
    }
    
    .nav-overlay.active {
        display: block;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .service-hero-title {
        font-size: 36px;
    }
    
    .service-section-title {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .hero-headline {
        font-size: 36px;
    }
    
    .hero-subheadline, .section-subtitle {
        font-size: 16px;
    }
    
    .section-title, .about-title {
        font-size: 30px;
    }
    
    .service-title {
        font-size: 22px;
    }
    
    .service-text, .about-text, .about-list-item {
        font-size: 16px;
    }
    
    .hero {
        padding: 150px 0 60px;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .service-detail-text {
        font-size: 16px;
    }
}
