:root {
    --primary: var(--bs-primary);
    --secondary: var(--bs-secondary);
    --accent: #f39c12;
    --light: #ecf0f1;
    --dark: #2c3e50;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--dark);
    background-color: #f8f9fa;
}

.navbar {
    background-color: var(--primary);
    padding: 1rem 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--light) !important;
}

.nav-link {
    color: var(--light) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s;
}

.nav-link:hover {
    color: var(--light) !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to right, var(--primary), #34495e);
    color: white;
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40%;
    background: rgba(255,255,255,0.05);
    transform: skewX(-15deg) translateX(10%);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.btn-hero {
    background-color: var(--accent);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-hero:hover {
    background-color: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    text-align: center;
    margin-bottom: 3rem;
}

/* About Us */
.about-us {
    background-color: white;
}

.about-card {
    background-color: var(--light);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s;
}

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

.about-icon {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

/* Mission */
.mission {
    background-color: var(--primary);
    color: white;
    position: relative;
}

.mission::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background-color: white;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
}

.mission-content {
    border-left: 5px solid var(--accent);
    padding-left: 2rem;
}

/* Why We're Best */
.best-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
    border-top: 5px solid var(--secondary);
}

.best-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    right: 20px;
}

/* News Section */
.news-section {
    background-color: #f8f9fa;
}

.news-tile {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
    position: relative;
}

.news-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.news-content {
    padding: 1.5rem;
}

.news-date {
    background-color: var(--accent);
    color: white;
    font-size: 0.8rem;
    padding: 5px 15px;
    border-radius: 30px;
}

.news-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

.news-excerpt {
    color: #7f8c8d;
    margin-bottom: 1rem;
}

.btn-read {
    background-color: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-read:hover {
    background-color: var(--secondary);
    color: white;
}

/* Featured News */
.news-featured {
    background-color: var(--primary);
    color: white;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.news-featured::after {
    content: "FEATURED";
    position: absolute;
    top: 25px;
    left: -30px;
    background-color: var(--accent);
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 700;
    transform: rotate(-45deg);
}

.news-featured-content {
    padding: 2rem;
}

.news-featured-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Pricing Section */
.pricing-section {
    background-color: white;
}

.pricing-card {
    background-color: var(--light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s;
    position: relative;
    border: none;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.pricing-header {
    background-color: var(--primary);
    color: white;
    padding: 2rem;
    text-align: center;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
}

.pricing-period {
    font-size: 0.9rem;
    opacity: 0.7;
}

.pricing-features {
    padding: 2rem;
}

.pricing-feature {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.pricing-feature i {
    color: var(--secondary);
    margin-right: 10px;
}

.btn-pricing {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    width: 100%;
    margin-top: 1rem;
    transition: all 0.3s;
}

.btn-pricing:hover {
    background-color: var(--secondary);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    background-color: #f8f9fa;
}

.contact-form {
    background-color: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-control {
    border: none;
    background-color: var(--light);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.btn-contact {
    background-color: var(--secondary);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-contact:hover {
    background-color: var(--primary);
}

.contact-info {
    padding: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-icon {
    background-color: var(--primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background-color: var(--primary);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

/* Alert Messages */
.alert-success {
    display: none;
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 1rem;
}