/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0d1117;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #4f8ff7;
}

.nav-link.btn-login {
    background: linear-gradient(135deg, #4f8ff7, #3b82f6);
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link.btn-login:hover {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    transform: translateY(-1px);
    color: #ffffff;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
    position: relative;
    overflow: hidden;
    padding-top: 70px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(79, 143, 247, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    background: linear-gradient(135deg, #4f8ff7 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: #8b949e;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #4f8ff7, #3b82f6);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(79, 143, 247, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 143, 247, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.hero-stats {
    display: flex;
    gap: 32px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #4f8ff7;
}

.stat-label {
    font-size: 0.875rem;
    color: #8b949e;
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-preview {
    background: linear-gradient(145deg, #161b22, #21262d);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.dashboard-icon {
    font-size: 3rem;
    color: #4f8ff7;
    margin-bottom: 20px;
    display: block;
}

.dashboard-header h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.dashboard-metrics {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.metric {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(79, 143, 247, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(79, 143, 247, 0.2);
}

.metric i {
    color: #4f8ff7;
    font-size: 1.2rem;
}

.metric span {
    color: #ffffff;
    font-weight: 500;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: #161b22;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.section-header p {
    font-size: 1.25rem;
    color: #8b949e;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.feature-card {
    background: linear-gradient(145deg, #21262d, #30363d);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(79, 143, 247, 0.3);
    box-shadow: 0 10px 30px rgba(79, 143, 247, 0.2);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #4f8ff7, #3b82f6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

.feature-card p {
    color: #8b949e;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.cta-content p {
    font-size: 1.25rem;
    color: #8b949e;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Footer */
.footer {
    background: #0d1117;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}

.footer-section p {
    color: #8b949e;
    line-height: 1.6;
}

.footer-section h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #8b949e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4f8ff7;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #8b949e;
}

.contact-info i {
    color: #4f8ff7;
    width: 16px;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: #8b949e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(13, 17, 23, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        padding: 15px;
        display: block;
        width: 100%;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .hero-container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 24px;
        width: 100%;
        max-width: 300px;
    }
    
    .dashboard-preview {
        padding: 20px;
        max-width: 300px;
    }
    
    .feature-card {
        padding: 24px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img:not([src]) {
    opacity: 0;
}

/* Active Navigation State */
.nav-link.active {
    color: #4f8ff7;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #4f8ff7;
    border-radius: 1px;
}

/* Pricing Page Styles */
.pricing-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
    text-align: center;
}

.pricing-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.pricing-hero-content p {
    font-size: 1.25rem;
    color: #8b949e;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.billing-option {
    color: #8b949e;
    font-weight: 500;
    transition: color 0.3s ease;
}

.billing-option.active {
    color: #ffffff;
}

.discount-badge {
    background: #4f8ff7;
    color: #ffffff;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 8px;
}

.toggle-switch {
    width: 50px;
    height: 24px;
    background: #30363d;
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease;
}

.toggle-switch.active {
    background: #4f8ff7;
}

.toggle-slider {
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: transform 0.3s ease;
}

.toggle-switch.active .toggle-slider {
    transform: translateX(26px);
}

.pricing-plans {
    padding: 60px 0 120px;
    background: #161b22;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.plan-card {
    background: linear-gradient(145deg, #21262d, #30363d);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
    border-color: rgba(79, 143, 247, 0.3);
    box-shadow: 0 20px 40px rgba(79, 143, 247, 0.2);
}

.plan-card.featured {
    border-color: #4f8ff7;
    transform: scale(1.05);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4f8ff7, #3b82f6);
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 32px;
}

.plan-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.plan-header p {
    color: #8b949e;
    margin-bottom: 24px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #4f8ff7;
}

.period {
    color: #8b949e;
    font-size: 1rem;
}

.plan-features ul {
    list-style: none;
    margin-bottom: 32px;
}

.plan-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
}

.plan-features i {
    color: #4f8ff7;
    width: 16px;
}

.btn-plan {
    width: 100%;
}

/* Features Comparison Table */
.features-comparison {
    padding: 120px 0;
    background: #0d1117;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #21262d;
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 24px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
    background: #30363d;
    color: #ffffff;
    font-weight: 600;
}

.comparison-table td {
    color: #8b949e;
}

.text-green {
    color: #4f8ff7;
}

.text-red {
    color: #f85149;
}

/* FAQ Styles */
.pricing-faq,
.contact-faq {
    padding: 120px 0;
    background: #161b22;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: #21262d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(79, 143, 247, 0.1);
}

.faq-question h4 {
    color: #ffffff;
    font-weight: 600;
    margin: 0;
}

.faq-question i {
    color: #4f8ff7;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px;
    max-height: 200px;
}

.faq-answer p {
    color: #8b949e;
    margin: 0;
    line-height: 1.6;
}

/* Features Page Styles */
.features-hero,
.contact-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
    text-align: center;
}

.features-hero-content h1,
.contact-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.features-hero-content p,
.contact-hero-content p {
    font-size: 1.25rem;
    color: #8b949e;
    max-width: 600px;
    margin: 0 auto;
}

.core-features {
    padding: 120px 0;
    background: #161b22;
}

.feature-section {
    margin-bottom: 120px;
}

.feature-section.reverse .feature-content {
    flex-direction: row-reverse;
}

.feature-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.feature-text h3 i {
    color: #4f8ff7;
    margin-right: 16px;
}

.feature-text p {
    font-size: 1.125rem;
    color: #8b949e;
    margin-bottom: 24px;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 8px 0;
    color: #ffffff;
    position: relative;
    padding-left: 20px;
}

.feature-list li::before {
    content: '•';
    color: #4f8ff7;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.feature-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.mockup-container {
    background: linear-gradient(145deg, #21262d, #30363d);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 100%;
}

.mockup-screen {
    background: #0d1117;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(79, 143, 247, 0.3);
}

.mockup-header h4 {
    color: #ffffff;
    margin-bottom: 16px;
    font-size: 1.125rem;
}

.profile-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(79, 143, 247, 0.1);
    padding: 16px;
    border-radius: 8px;
}

.profile-avatar {
    width: 48px;
    height: 48px;
    background: #4f8ff7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-avatar i {
    color: #ffffff;
}

.profile-info h5 {
    color: #ffffff;
    margin-bottom: 4px;
}

.profile-info span {
    color: #8b949e;
    font-size: 0.875rem;
}

.profile-stats {
    display: flex;
    gap: 16px;
    margin-top: 8px;
    font-size: 0.75rem;
}

.profile-stats span {
    color: #4f8ff7;
}

.cert-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cert-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.cert-item.valid .cert-status {
    color: #4f8ff7;
}

.cert-item.warning .cert-status {
    color: #ffa500;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.schedule-day h6 {
    color: #ffffff;
    margin-bottom: 8px;
    text-align: center;
    font-size: 0.875rem;
}

.shift {
    padding: 8px;
    border-radius: 6px;
    text-align: center;
    font-size: 0.75rem;
    margin-bottom: 4px;
}

.shift.morning {
    background: rgba(79, 143, 247, 0.2);
    color: #4f8ff7;
}

.shift.evening {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
}

.shift.night {
    background: rgba(139, 148, 158, 0.2);
    color: #8b949e;
}

.training-modules {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.module {
    display: flex;
    align-items: center;
    gap: 12px;
}

.module i {
    font-size: 1.5rem;
}

.module.completed i {
    color: #4f8ff7;
}

.module.in-progress i {
    color: #ffa500;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, #4f8ff7, #3b82f6);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.advanced-features {
    padding: 120px 0;
    background: #0d1117;
}

.advanced-feature-card {
    background: linear-gradient(145deg, #21262d, #30363d);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.advanced-feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(79, 143, 247, 0.3);
    box-shadow: 0 10px 30px rgba(79, 143, 247, 0.2);
}

.feature-categories {
    padding: 120px 0;
    background: #161b22;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.category-section {
    background: #21262d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
}

.category-section h3 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.category-section h3 i {
    color: #4f8ff7;
    margin-right: 12px;
}

.category-section ul {
    list-style: none;
}

.category-section ul li {
    padding: 8px 0;
    color: #8b949e;
    position: relative;
    padding-left: 20px;
}

.category-section ul li::before {
    content: '•';
    color: #4f8ff7;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0 120px;
    background: #161b22;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-section {
    background: #21262d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.form-header {
    margin-bottom: 32px;
}

.form-header h2 {
    color: #ffffff;
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.form-header p {
    color: #8b949e;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: #30363d;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4f8ff7;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #8b949e;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    color: #8b949e;
    font-size: 0.875rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 18px;
    height: 18px;
    background: #30363d;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #4f8ff7;
    border-color: #4f8ff7;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-card,
.support-hours,
.quick-links {
    background: #21262d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
}

.contact-card h3,
.support-hours h3,
.quick-links h3 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 24px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #4f8ff7, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: #ffffff;
    font-size: 1.25rem;
}

.contact-text h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-text p {
    color: #8b949e;
    margin-bottom: 4px;
}

.small-text {
    font-size: 0.875rem;
    color: #6e7681;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item span:first-child {
    color: #ffffff;
    font-weight: 500;
}

.hours-item span:last-child {
    color: #8b949e;
}

.hours-item.emergency span {
    color: #4f8ff7;
}

.quick-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-links a {
    color: #8b949e;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.quick-links a:hover {
    color: #4f8ff7;
}

.quick-links i {
    width: 16px;
    color: #4f8ff7;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .plan-card.featured {
        transform: none;
    }
    
    .plan-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .comparison-table-wrapper {
        margin: 0 -20px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .feature-section.reverse .feature-content {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .pricing-hero-content h1,
    .features-hero-content h1,
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .billing-toggle {
        flex-wrap: wrap;
        gap: 12px;
    }
}