@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

:root {
    /* Colors */
    --primary: #2c3e50;
    --secondary: #D6A029;
    --accent: #3498db;
    --dark: #222;
    --light: #f8f9fa;
    --gray: #6c757d;
    --white: #ffffff;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.2);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Header & Navigation */
header {
    background-color: var(--primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
}

.logo-container {
    max-width: 150px;
}

.logo {
    width: 100%;
    height: auto;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: var(--space-lg);
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: var(--space-xs) 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.burger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.burger div {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 5px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), 
                url('imgs/grey-bridge.jpg') center/cover no-repeat;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-md);
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: var(--space-lg);
}

/* Pricing Category Styles */
.pricing-category {
    margin-bottom: var(--space-xl);
}

.pricing-category h3 {
    color: var(--primary);
    margin-bottom: var(--space-md);
    font-size: 1.5rem;
    padding-bottom: var(--space-xs);
    border-bottom: 2px solid var(--secondary);
}

/* Pricing Table Styles */
.pricing-table {
    overflow-x: auto;
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-sm);
    border-radius: 8px;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.pricing-table th, 
.pricing-table td {
    padding: var(--space-md);
    text-align: left;
    border: 1px solid #eee;
}

.pricing-table th {
    background-color: var(--primary);
    color: var(--white);
    font-weight: 600;
}

.pricing-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.pricing-table tr:hover {
    background-color: #f1f1f1;
}

/* Profit Section Styles */
.profit-section {
    background-color: #f8f9fa;
    padding: var(--space-lg);
    border-radius: 8px;
    margin-top: var(--space-xl);
}

.profit-section h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
    text-align: center;
}

.profit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.profit-card {
    background: var(--white);
    padding: var(--space-md);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.profit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.profit-card h4 {
    color: var(--secondary);
    margin-bottom: var(--space-xs);
}
.section-title {
    text-align: center;
    margin-top:var(--space-xl);
    margin-bottom: var(--space-xl);
    font-size: 2rem;
    color: var(--primary);
    position: relative;
}

/* * Pricing Section 
.pricing-section {
    padding: var(--space-xl) 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-xl);
    font-size: 2rem;
    color: var(--primary);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary);
    margin: var(--space-sm) auto;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: var(--space-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.pricing-card {
    background: var(--white);
    border-radius: 8px;
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 1px solid #eee;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    border: 2px solid var(--secondary);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--secondary);
    color: var(--white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid #eee;
}

.pricing-header h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.price span {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 400;
}

.features {
    list-style: none;
    margin: var(--space-lg) 0;
}

.features li {
    margin-bottom: var(--space-sm);
    padding-left: var(--space-md);
    position: relative;
}

.features li i {
    position: absolute;
    left: 0;
    color: var(--secondary);
}
 */
/* CTA Buttons */
.cta-btn {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    text-align: center;
    width: 100%;
    color: var(--secondary);
}

.cta-btn.primary {
    background: var(--secondary);
    color: var(--white);
    border: 2px solid var(--secondary);
}

.cta-btn.primary:hover {
    background: transparent;
    color: var(--secondary);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

.cta-btn.secondary:hover {
    background: var(--secondary);
    color: var(--white);
}

/* Audience Section */
.audience-section {
    padding: var(--space-xl) 0;
    background-color: #f8f9fa;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.audience-card {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: var(--space-md);
}

.audience-card h3 {
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

/* CTA Section */
.cta-section {
    padding: var(--space-xl) 0;
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), 
                url('imgs/motivational-backgrnd.jpg') center/cover no-repeat;
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.cta-content p {
    margin-bottom: var(--space-lg);
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn:hover{
    color:var(--primary)
}

/* Footer */
footer {
    background: var(--primary);
    color: var(--white);
}

.footer-main {
    padding: var(--space-xl) 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.footer-section {
    margin-bottom: var(--space-lg);
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: var(--space-md);
    position: relative;
    padding-bottom: var(--space-xs);
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary);
}

.footer-logo {
    max-width: 150px;
    margin-bottom: var(--space-md);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--space-sm);
}

.contact li i{
     margin-right: 10px;

}
.footer-section a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--secondary);
    padding-left: 5px;
}


.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: var(--space-md) 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 70%;
        height: 100vh;
        background: var(--primary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform 0.5s ease-in-out;
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .nav-links li {
        margin: var(--space-md) 0;
        opacity: 0;
    }
    
    .burger {
        display: block;
    }
    
    .hero {
        min-height: 60vh;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: auto;
        padding: var(--space-sm) var(--space-xl);
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 2rem;
    }
}

/* Animation for links */
@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Burger Animation */
.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}