/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a202c;
    background: #ffffff;
    overflow-x: hidden;
}

/* Font family definitions */
.title-font {
    font-family: 'Raleway', sans-serif;
}

.text-font {
    font-family: 'Poppins', sans-serif;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #1a202c;
}

.nav-brand .logo img {
    border-radius: 8px;
}

.nav-brand .logo h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
    margin: 0;
    font-family: 'Raleway', sans-serif;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #10b981;
}

.nav-divider {
    width: 1px;
    height: 24px;
    background: #e2e8f0;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem !important;
    font-size: 0.95rem !important;
}

.nav-cta svg {
    transition: transform 0.2s ease;
}

.nav-cta:hover svg {
    transform: translateX(2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: #4a5568;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    padding: 2rem 20px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    transition: color 0.2s ease;
}

.mobile-nav-link:hover {
    color: #10b981;
}

.mobile-nav-cta {
    margin-top: 1rem;
}

.mobile-nav-cta .btn-primary {
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
    display: flex;
    align-items: center;
    padding-top: 140px;
}


.hero-layout {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    position: relative;
    z-index: 2;
    text-align: center;
    margin: 0 auto;
}

.hero-title {
    margin-bottom: 1rem;
}

.hero-title h1 {
    font-size: 3.2rem;
    font-weight: 400;
    color: white;
    margin: 0;
    line-height: 1.2;
    font-family: 'Raleway', sans-serif;
}

.hero-main {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.hero-content {
    text-align: center;
    max-width: 600px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.7;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}



@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button Styles */
.btn-primary {
    display: inline-block;
    background: #059669;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 400;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}


.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(5, 150, 105, 0.4);
    background: #047857;
}

.btn-primary:active {
    transform: translateY(0);
    transition: all 0.1s ease;
}


.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    border-radius: 8px;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 400;
    color: #1a202c;
    margin-bottom: 3rem;
    position: relative;
    font-family: 'Raleway', sans-serif;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, #10b981, #3b82f6);
    border-radius: 2px;
}

/* Stats Grid within Why Section */
.why-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.why-section .stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-section .stat-number {
    font-size: 2rem;
    font-weight: 400;
    font-family: 'Raleway', sans-serif;
    background: #1a202c;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.why-section .stat-label {
    font-size: 1.1rem;
    font-weight: 300;
    color: #4a5568;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
}

/* Responsive adjustments for stats in why section */
@media (max-width: 768px) {
    .why-section .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .why-section .stat-number {
        font-size: 2.5rem;
    }
    
    .why-section .stat-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .why-section .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-section .stat-item {
        padding: 1.5rem 1rem;
    }
}

/* How It Works Section */
.how-it-works {
    background: #f8fafc;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.step {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

/* Removed hover effect */

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #10b981, #3b82f6);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #1a202c;
    margin-bottom: 1rem;
    font-family: 'Raleway', sans-serif;
}

.step p {
    color: #4a5568;
    line-height: 1.6;
}

/* Features Section */
.features {
    background: white;
}

.features .container {
    max-width: 1400px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
    width: 100%;
}

.feature {
    padding: 2rem 1.5rem;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 0;
    word-wrap: break-word;
}

/* Removed hover effect */

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #10b981, #3b82f6);
    color: white;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.feature h3 {
    font-size: 1.2rem;
    font-weight: 400;
    color: #1a202c;
    margin-bottom: 1rem;
    font-family: 'Raleway', sans-serif;
    line-height: 1.3;
}

.feature p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Additional Features Section */
.additional-features {
    background: linear-gradient(135deg, #059669 0%, #2563eb 100%);
    color: white;
}

.additional-features .section-title {
    color: white;
}

.capabilities-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.capability-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

/* Removed hover effect */

.capability-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.capability-content p {
    line-height: 1.6;
    opacity: 0.9;
}

.capability-icon {
    margin-bottom: 1rem;
}

/* Why Section */
.why-section {
    background: #f8fafc;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.benefit {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

/* Removed hover effect */

.benefit h3 {
    font-size: 1.4rem;
    font-weight: 400;
    color: #1a202c;
    margin-bottom: 1rem;
    font-family: 'Raleway', sans-serif;
}

.benefit p {
    color: #4a5568;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
    color: white;
    text-align: center;
    padding: 6rem 0;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    font-family: 'Raleway', sans-serif;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Footer */
.footer {
    background: #1a202c;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo img {
    border-radius: 8px;
}

.footer-brand-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
    margin: 0 0 0.25rem 0;
}

.footer-brand-text p {
    color: #cbd5e0;
    margin: 0;
    font-size: 0.9rem;
}

.footer-description p {
    color: #a0aec0;
    line-height: 1.6;
    margin: 0;
}

.footer-cta .footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
}

.footer-cta .footer-btn svg {
    transition: transform 0.2s ease;
}

.footer-cta .footer-btn:hover svg {
    transform: translateX(2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-column-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cbd5e0;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 0.25rem 0;
}

.footer-link:hover {
    color: #10b981;
    transform: translateX(4px);
}

.footer-link svg {
    width: 14px;
    height: 14px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.footer-link:hover svg {
    opacity: 1;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: #2d3748;
    margin: 2rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #a0aec0;
    font-size: 0.9rem;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-bottom-left p {
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal-link {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal-link:hover {
    color: #10b981;
}

.footer-separator {
    color: #4a5568;
}

/* Large screens - ensure 4 column layout */
@media (min-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .feature {
        padding: 2.5rem 2rem;
    }
    
    .feature h3 {
        font-size: 1.3rem;
    }
    
    .feature p {
        font-size: 1rem;
    }
}

/* Tablet responsive design */
@media (max-width: 1024px) and (min-width: 769px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .feature {
        padding: 2.5rem 2rem;
    }
    
    .feature h3 {
        font-size: 1.3rem;
    }
    
    .feature p {
        font-size: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-title h1 {
        font-size: 2.4rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
        gap: 1.5rem;
    }
    
    .feature {
        padding: 2rem 1.5rem;
    }
    
    .feature h3 {
        font-size: 1.2rem;
    }
    
    .feature p {
        font-size: 0.9rem;
    }
    
    .benefits {
        grid-template-columns: 1fr;
    }
    
    .capabilities-list {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .final-cta p {
        font-size: 1.1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 100px;
    }
    
    .hero-title h1 {
        font-size: 2rem;
        line-height: 1.4;
    }
    
    
    .btn-primary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .step, .feature, .benefit {
        padding: 2rem 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
        gap: 1.5rem;
    }
    
    .feature {
        padding: 2rem 1.5rem;
    }
    
    .feature h3 {
        font-size: 1.3rem;
    }
    
    .feature p {
        font-size: 1rem;
    }
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Loading spinner for async content */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Focus styles for accessibility */
.btn-primary:focus,
.nav-links a:focus {
    outline: 2px solid #10b981;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero {
        background: linear-gradient(135deg, #000080 0%, #4b0082 100%);
    }
    
    .btn-primary {
        background: #000080;
        border: 2px solid white;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Contact Page Styles */
.contact-page {
    padding: 140px 0 5rem;
    background: #f8fafc;
    min-height: 100vh;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-section {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-row.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-weight: 500;
    color: #1a202c;
    font-size: 0.95rem;
}

.form-input,
.form-textarea {
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: white;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-submit-btn {
    margin-top: 1rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
}

.contact-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

.error-text {
    display: none;
    color: #e53e3e;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.form-row.error .form-input,
.form-row.error .form-textarea,
.form-group.error .form-input {
    border-color: #e53e3e;
}

.form-row.error .error-text,
.form-group.error .error-text {
    display: block;
}

.success-message,
.error-message {
    display: none;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    text-align: center;
}

.success-message {
    background: #f0fff4;
    border: 1px solid #9ae6b4;
    color: #22543d;
}

.success-message h3 {
    color: #22543d;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.error-message {
    background: #fed7d7;
    border: 1px solid #feb2b2;
    color: #742a2a;
}

.contact-info-section {
    position: sticky;
    top: 160px;
}

.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

/* Removed hover effect */

.contact-info-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
    font-family: 'Raleway', sans-serif;
}

.contact-info-card p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-email {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #10b981;
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1rem;
    background: #f0fff4;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.contact-email:hover {
    background: #dcfce7;
    transform: translateX(4px);
}

.contact-email svg {
    color: #10b981;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-page {
        padding: 120px 0 3rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-section {
        padding: 2rem 1.5rem;
    }
    
    .form-row.two-columns {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-info-section {
        position: static;
    }
    
    .contact-info-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-page {
        padding: 100px 0 2rem;
    }
    
    .contact-header {
        margin-bottom: 2.5rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-form-section {
        padding: 1.5rem 1rem;
    }
    
    .contact-info-card {
        padding: 1.25rem;
    }
}

/* Status Page Styles */
.status-page {
    padding: 140px 0 5rem;
    background: #f8fafc;
    min-height: 100vh;
}

.status-header {
    text-align: center;
    margin-bottom: 4rem;
}

.overall-status {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

/* Removed hover effect */

.status-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-dot.operational {
    background: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.status-dot.degraded {
    background: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.status-dot.outage {
    background: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

.status-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    font-family: 'Poppins', sans-serif;
}

.status-description {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.last-updated {
    color: #718096;
    font-size: 0.9rem;
    font-style: italic;
}

.services-grid {
    margin-bottom: 3rem;
}

.services-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

/* Removed hover effect */

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.service-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a202c;
    font-family: 'Raleway', sans-serif;
}

.service-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.service-status.operational {
    color: #10b981;
}

.service-status.degraded {
    color: #f59e0b;
}

.service-status.outage {
    color: #ef4444;
}

.service-description {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
}

.uptime-section {
    margin-bottom: 3rem;
}

.uptime-content {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

/* Removed hover effect */

.uptime-header {
    text-align: center;
    margin-bottom: 3rem;
}

.uptime-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.uptime-stat {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 15px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

/* Removed hover effect */

.uptime-percentage {
    font-size: 2.5rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.uptime-period {
    color: #4a5568;
    font-size: 0.9rem;
    font-weight: 500;
}

.uptime-chart {
    display: flex;
    gap: 2px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.uptime-bar {
    width: 8px;
    height: 40px;
    border-radius: 2px;
    transition: all 0.2s ease;
}

.uptime-bar.operational {
    background: #10b981;
}

.uptime-bar.incident {
    background: #ef4444;
}

.uptime-bar.maintenance {
    background: #f59e0b;
}

/* Removed hover effect */

.incidents-section {
    margin-bottom: 3rem;
}

.incidents-content {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

/* Removed hover effect */

.incidents-header {
    text-align: center;
    margin-bottom: 3rem;
}

.no-incidents {
    text-align: center;
    padding: 3rem 2rem;
}

.no-incidents-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.no-incidents h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
    font-family: 'Raleway', sans-serif;
}

.no-incidents p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 1.1rem;
}

.incident-item {
    padding: 2rem;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

/* Removed hover effect */

.incident-item.resolved {
    border-left: 4px solid #10b981;
}

.incident-item.active {
    border-left: 4px solid #f59e0b;
}

.incident-item.critical {
    border-left: 4px solid #ef4444;
}

.incident-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.incident-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a202c;
    font-family: 'Raleway', sans-serif;
}

.incident-status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.incident-status.resolved {
    background: #f0fff4;
    color: #22543d;
}

.incident-status.active {
    background: #fffbeb;
    color: #92400e;
}

.incident-status.critical {
    background: #fed7d7;
    color: #742a2a;
}

.incident-description {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.incident-time {
    color: #718096;
    font-size: 0.9rem;
    font-style: italic;
}

.subscribe-section {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
}

/* Removed hover effect */

.subscribe-section .section-title {
    margin-bottom: 1rem;
}

.subscribe-section .contact-subtitle {
    margin-bottom: 2rem;
}

.subscribe-form .form-row {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.subscribe-form .form-input {
    flex: 1;
}

.subscribe-form .btn-primary {
    white-space: nowrap;
}

/* Loader Styles */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader-overlay.hidden {
    opacity: 0;
}

.main-loader {
    text-align: center;
}

.main-loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    border-top-color: #10b981;
    animation: spin 1s ease-in-out infinite;
    margin: 0 auto 2rem;
}

.main-loader-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
    font-family: 'Raleway', sans-serif;
}

.main-loader-subtext {
    color: #4a5568;
    font-size: 1rem;
}

.section-loader {
    text-align: center;
    padding: 3rem 2rem;
}

.section-loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    border-top-color: #10b981;
    animation: spin 1s ease-in-out infinite;
    margin: 0 auto 1rem;
}

.section-loader-text {
    color: #4a5568;
    font-size: 1rem;
}

.hidden-incidents {
    display: none;
}

/* Responsive Design for Status Page */
@media (max-width: 768px) {
    .status-page {
        padding: 120px 0 3rem;
    }
    
    .services-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .uptime-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .uptime-chart {
        gap: 1px;
    }
    
    .uptime-bar {
        width: 6px;
        height: 30px;
    }
    
    .subscribe-form .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .overall-status,
    .uptime-content,
    .incidents-content,
    .subscribe-section {
        padding: 2rem 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .incident-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .status-page {
        padding: 100px 0 2rem;
    }
    
    .status-header {
        margin-bottom: 2.5rem;
    }
    
    .overall-status,
    .uptime-content,
    .incidents-content,
    .subscribe-section {
        padding: 1.5rem 1rem;
    }
    
    .service-card {
        padding: 1.25rem;
    }
    
    .incident-item {
        padding: 1.25rem;
    }
    
    .uptime-percentage {
        font-size: 2rem;
    }
}