/* GoodToGo Website Styles */
:root {
    --primary-color: #0a4d8c;
    --primary-light: #2c73b8;
    --primary-dark: #073766;
    --accent-color: #ff6b6b;
    --light-bg: #f5f7fa;
    --dark-text: #333;
    --light-text: #666;
    --white: #fff;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--white);
}

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

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    color: var(--primary-dark);
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-light);
}

ul {
    list-style: none;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 30px;
}

/* Header */
header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo a {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: bold;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: var(--white);
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 4px;
}

nav ul li a:hover, 
nav ul li a.active {
    background-color: rgba(255,255,255,0.1);
}

.header-cta {
    display: flex;
    align-items: center;
}

.download-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.download-button:hover {
    background-color: #ff5252;
    color: var(--white);
}

/* Hero Section */
.hero {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    background-image: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.button-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.button-primary:hover {
    background-color: #ff5252;
    color: var(--white);
}

.button-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--white);
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    border: 2px solid var(--white);
    transition: background-color 0.3s;
}

.button-secondary:hover {
    background-color: rgba(255,255,255,0.1);
    color: var(--white);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.features h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.feature-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

/* App Screens Section */
.app-screens {
    padding: 80px 0;
    background-color: var(--white);
}

.app-screens h2 {
    text-align: center;
    margin-bottom: 50px;
}

.screen-showcase {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.screen-item {
    flex: 0 1 300px;
    text-align: center;
}

.screen-item h3 {
    margin-top: 20px;
    color: var(--primary-dark);
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.pricing h2 {
    text-align: center;
    margin-bottom: 20px;
}

.pricing-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.pricing-plans {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.pricing-plan {
    background-color: var(--white);
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    flex: 1 1 300px;
    max-width: 350px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.pricing-plan.featured {
    border: 2px solid var(--primary-color);
    position: relative;
}

.featured-tag {
    position: absolute;
    top: -15px;
    right: 30px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.plan-name {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.plan-price span {
    font-size: 1rem;
    color: var(--light-text);
}

.plan-features {
    margin-bottom: 30px;
}

.plan-features li {
    padding: 5px 0;
    position: relative;
    padding-left: 25px;
}

.plan-features li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.plan-button {
    display: inline-block;
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s;
}

.plan-button:hover {
    background-color: var(--primary-light);
    color: var(--white);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-image: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 30px;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Footer */
footer {
    background-color: #0a1f36;
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1 1 200px;
}

.footer-column h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #aaa;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--white);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #aaa;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--white);
}

.copyright {
    text-align: center;
    color: #aaa;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        width: 90%;
        padding: 0 10px;
    }
    
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        justify-content: center;
        margin-bottom: 15px;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons, .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-plan {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .screen-item {
        flex: 0 1 100%;
    }
}

/* Support Page Specific Styles */
.support-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.support-section {
    margin-bottom: 40px;
}

.support-section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.faq-item {
    margin-bottom: 25px;
}

.faq-question {
    font-weight: bold;
    color: var(--dark-text);
    margin-bottom: 10px;
    font-size: 18px;
}

.faq-answer {
    color: var(--light-text);
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.contact-method {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    flex: 1 1 250px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.contact-method h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-icon {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.method-details {
    color: var(--light-text);
    line-height: 1.5;
}

.support-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.support-button:hover {
    background-color: var(--primary-light);
}