/* Global Styles */
:root {
    --primary-color: #2563EB;
    --secondary-color: #22C55E;
    --accent-color: #ff6b6b;
    --light-color: #F3F4F6;
    --dark-color: #212529;
    --gray-color: #6B7280;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --border-color: #e9ecef;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;

    /* Common spacing values */
    --spacing-sm: 5px;
    --spacing-md: 10px;
    --spacing-lg: 15px;
    --spacing-xl: 20px;
    --spacing-xxl: 30px;
    --spacing-section: 100px 0;

    /* Common border radius values */
    --radius-sm: 5px;
    --radius-md: 10px;
    --radius-round: 50%;
}

* {
    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-color);
    background-color: var(--light-color);
}

/* Utility Classes */
.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.flex-column {
    display: flex;
    flex-direction: column;
}

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

.card {
    background-color: white;
    border-radius: var(--radius-md);
    padding: var(--spacing-xxl);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.card-hover:hover {
    transform: translateY(-10px);
}

.section-padding {
    padding: var(--spacing-section);
}

.mb-sm {
    margin-bottom: var(--spacing-sm);
}

.mb-md {
    margin-bottom: var(--spacing-md);
}

.mb-lg {
    margin-bottom: var(--spacing-lg);
}

.mb-xl {
    margin-bottom: var(--spacing-xl);
}

.mb-xxl {
    margin-bottom: var(--spacing-xxl);
}

.grid-layout {
    display: grid;
    gap: var(--spacing-xxl);
    margin-top: 50px;
}

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

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

a {
    text-decoration: none;
    color: var(--dark-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: white;
}

.section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: white;
    font-size: 1.1rem;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-hover:hover {
    transform: translateY(-3px);
}

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

.btn-primary:hover {
    background-color: #1e56d1;
}

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

.btn-secondary:hover {
    background-color: #1ca54e;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

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

/* Header Styles */
header {
    background-color: white;
    box-shadow: var(--box-shadow);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
}

.highlight {
    color: var(--primary-color);
}

.domain {
    font-weight: 400;
    font-size: 1.4rem;
    color: var(--gray-color);
}

.main-nav {
    display: flex;
}

.main-nav li {
    margin-left: 30px;
}

.main-nav a {
    font-weight: 500;
    position: relative;
}

.main-nav a:hover, .main-nav a.active {
    color: var(--primary-color);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.main-nav a:hover::after, .main-nav a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2563EB 0%, #608EF0 100%);
    color: white;
    padding: 100px 0 50px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

/* API Section */
.apis {
    padding: var(--spacing-section);
    background-color: var(--light-color);
}

.api-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xxl);
    margin-top: 50px;
}

.api-card {
    background-color: white;
    border-radius: var(--radius-md);
    padding: var(--spacing-xxl);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.api-card:hover {
    transform: translateY(-10px);
}

.api-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.api-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.api-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.api-card p {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.api-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.api-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.api-link:hover i {
    transform: translateX(5px);
}

/* Features Section */
.features {
    padding: var(--spacing-section);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xxl);
    margin-top: 50px;
}

.feature {
    text-align: center;
    padding: var(--spacing-xxl);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.feature:hover {
    box-shadow: var(--box-shadow);
}

.feature i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.feature p {
    color: var(--gray-color);
}

/* Pricing Section */
.pricing {
    padding: var(--spacing-section);
    background-color: var(--light-color);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xxl);
    margin-top: 50px;
}

.pricing-card {
    background-color: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
    position: relative;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-tag {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    font-size: 0.8rem;
    border-bottom-left-radius: 10px;
}

.pricing-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-color);
}

.pricing-features {
    padding: 30px;
}

.pricing-features ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.pricing-features ul li i {
    margin-right: 10px;
}

.pricing-features ul li .fa-check {
    color: var(--success-color);
}

.pricing-features ul li .fa-times {
    color: var(--danger-color);
}

.pricing-footer {
    padding: 0 30px 30px;
    text-align: center;
}

/* Contact Section */
.contact {
    padding: var(--spacing-section);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-form {
    background-color: white;
    padding: var(--spacing-xxl);
    border-radius: var(--radius-md);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: var(--spacing-xl);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 25px;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.info-item h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.info-item p {
    color: var(--gray-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo h2 {
    margin-bottom: 20px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-social a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-social a:hover {
    color: white;
}

/* API Details Tabs */
.api-details {
    padding: 100px 0;
    background-color: #fff;
}

.api-detail-tabs {
    margin-top: 50px;
}

.tab-nav {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
    overflow-x: auto;
}

.tab-btn {
    padding: 15px 25px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-pane h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.tab-pane h4 {
    margin: 20px 0 10px;
}

.tab-pane ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.tab-pane li {
    margin-bottom: 5px;
}

/* Pricing FAQ */
.pricing-faq {
    padding: 100px 0;
    background-color: #fff;
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

/* Additional Styles from script.js */
.error { 
    border-color: var(--danger-color) !important; 
}

.form-error-message { 
    color: var(--danger-color); 
    margin-bottom: 15px; 
}

.pricing-card.selected { 
    border: 2px solid var(--primary-color); 
}

#scrollToTop { 
    position: fixed; 
    bottom: 30px; 
    right: 30px; 
    width: 50px; 
    height: 50px; 
    background-color: var(--primary-color); 
    color: white; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    cursor: pointer; 
    opacity: 0; 
    visibility: hidden; 
    transition: var(--transition); 
    z-index: 999; 
}

#scrollToTop.visible { 
    opacity: 1; 
    visibility: visible; 
}

#scrollToTop:hover { 
    transform: translateY(-5px); 
}

.feature { 
    opacity: 0; 
    transform: translateY(20px); 
    transition: opacity 0.5s ease, transform 0.5s ease; 
}

.feature.animated { 
    opacity: 1; 
    transform: translateY(0); 
}

/* Documentation Page Styles */
.documentation-search {
    max-width: 600px;
    margin: 30px auto 0;
    display: flex;
    position: relative;
}

.documentation-search input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 1rem;
}

.documentation-search button {
    background-color: white;
    color: var(--primary-color);
    border: none;
    padding: 0 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.documentation-content {
    padding: 50px 0;
}

.documentation-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 50px;
}

.documentation-sidebar {
    position: sticky;
    top: 100px;
    height: calc(100vh - 100px);
    overflow-y: auto;
}

.sidebar-section {
    margin-bottom: 30px;
}

.sidebar-section h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.sidebar-section ul {
    list-style: none;
}

.sidebar-section ul li {
    margin-bottom: 10px;
}

.sidebar-section ul li a {
    color: var(--gray-color);
    text-decoration: none;
    display: block;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.sidebar-section ul li a:hover,
.sidebar-section ul li a.active {
    color: var(--primary-color);
    background-color: rgba(37, 99, 235, 0.1);
}

.documentation-main {
    max-width: 800px;
}

.doc-section {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.doc-section:last-child {
    border-bottom: none;
}

.doc-section h2 {
    margin-bottom: 20px;
    color: var(--dark-color);
    font-size: 1.8rem;
}

.doc-section h3 {
    margin: 30px 0 15px;
    color: var(--dark-color);
    font-size: 1.3rem;
}

.doc-section p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.code-block {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    overflow-x: auto;
}

.code-block code {
    font-family: monospace;
    color: var(--dark-color);
}

.code-example {
    margin-bottom: 20px;
}

.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #e9ecef;
    padding: 10px 15px;
    border-radius: 5px 5px 0 0;
}

.code-header span {
    font-weight: 600;
}

.copy-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-color);
}

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

.code-example pre {
    margin: 0;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 0 0 5px 5px;
    overflow-x: auto;
}

.code-example code {
    font-family: monospace;
    color: var(--dark-color);
}

.alert {
    display: flex;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert i {
    margin-right: 15px;
    font-size: 1.2rem;
}

.alert-warning {
    background-color: #fff3cd;
    color: #856404;
}

.doc-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.doc-table th,
.doc-table td {
    padding: 10px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.doc-table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.endpoint {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.method {
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-right: 10px;
    min-width: 60px;
    text-align: center;
}

.method.get {
    background-color: #d1ecf1;
    color: #0c5460;
}

.method.post {
    background-color: #d4edda;
    color: #155724;
}

.method.put {
    background-color: #fff3cd;
    color: #856404;
}

.method.delete {
    background-color: #f8d7da;
    color: #721c24;
}

.path {
    font-family: monospace;
    font-weight: 600;
}

.tutorial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.tutorial-card {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

.tutorial-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.tutorial-icon i {
    font-size: 20px;
    color: var(--primary-color);
}

.tutorial-card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.tutorial-card p {
    color: var(--gray-color);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.tutorial-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
}

.tutorial-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.tutorial-link:hover i {
    transform: translateX(5px);
}

.sdk-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.sdk-card {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.sdk-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.sdk-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.sdk-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.sdk-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sdk-link {
    color: var(--gray-color);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.sdk-link:hover {
    color: var(--primary-color);
}

.sdk-link i {
    margin-right: 5px;
}

/* Additional styles for search highlighting */
.doc-section .highlight {
    background-color: yellow;
    font-weight: bold;
}

/* About Page Styles */
.about-story {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.about-values {
    padding: 100px 0;
    background-color: var(--light-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(74, 108, 247, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.value-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.value-card p {
    color: var(--gray-color);
}

.about-team {
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.team-member h3 {
    margin: 20px 0 5px;
    padding: 0 20px;
    font-size: 1.5rem;
}

.member-title {
    color: var(--primary-color);
    font-weight: 600;
    padding: 0 20px;
    margin-bottom: 15px;
}

.member-bio {
    color: var(--gray-color);
    padding: 0 20px;
    margin-bottom: 20px;
}

.member-social {
    display: flex;
    gap: 10px;
    padding: 0 20px 20px;
}

.member-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(74, 108, 247, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.member-social a:hover {
    background-color: var(--primary-color);
    color: white;
}

.careers {
    padding: 100px 0;
    background-color: var(--light-color);
}

.careers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.careers-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.benefits-list li i {
    color: var(--success-color);
    margin-right: 10px;
}

.open-positions h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.position-card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    margin-bottom: 20px;
}

.position-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.position-location {
    color: var(--gray-color);
    margin-bottom: 15px;
}

.position-location i {
    margin-right: 5px;
}

.position-description {
    margin-bottom: 20px;
}

.blog {
    padding: 100px 0;
}

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

.blog-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 20px;
}

.blog-date {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.blog-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.blog-content p {
    color: var(--gray-color);
    margin-bottom: 15px;
}

.blog-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.blog-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.blog-link:hover i {
    transform: translateX(5px);
}

.blog-cta {
    text-align: center;
    margin-top: 50px;
}

.legal {
    padding: 100px 0;
    background-color: var(--light-color);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.legal-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-content h3 {
    margin: 30px 0 15px;
    font-size: 1.3rem;
}

.legal-content .btn {
    margin-top: 20px;
}

/* Contact Page Styles */
.contact {
    padding: 100px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.alert {
    display: flex;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.alert i {
    margin-right: 15px;
    font-size: 1.2rem;
    margin-top: 3px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 25px;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.info-item h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.info-item p {
    color: var(--gray-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.map-section {
    padding: var(--spacing-section);
    background-color: var(--light-color);
}

.map-container {
    margin-top: 50px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.faq-section {
    padding: var(--spacing-section);
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    margin-bottom: var(--spacing-xl);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    padding: var(--spacing-xl);
    background-color: #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 var(--spacing-xl);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: var(--spacing-xl);
    max-height: 500px;
}

/* Form validation styles */
.error {
    border-color: var(--danger-color) !important;
}

.form-error-message {
    color: var(--danger-color);
    margin-bottom: 15px;
}

/* Members Page Styles */
.members-login {
    padding: var(--spacing-section);
}

.login-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.login-form {
    background-color: white;
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--box-shadow);
}

.login-form h2 {
    margin-bottom: var(--spacing-xxl);
    text-align: center;
    color: var(--dark-color);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xl);
}

.remember-me {
    display: flex;
    align-items: center;
}

.remember-me input {
    margin-right: var(--spacing-sm);
}

.forgot-password {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.login-divider {
    position: relative;
    text-align: center;
    margin: 30px 0;
}

.login-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--border-color);
}

.login-divider span {
    position: relative;
    background-color: white;
    padding: 0 10px;
    color: var(--gray-color);
    font-size: 0.9rem;
}

.social-login {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.btn-google, .btn-github {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border: 1px solid var(--border-color);
    color: var(--dark-color);
    padding: 12px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-google:hover, .btn-github:hover {
    background-color: #f8f9fa;
}

.btn-google i, .btn-github i {
    margin-right: 10px;
}

.signup-link {
    text-align: center;
    margin-top: 30px;
}

.signup-link a {
    color: var(--primary-color);
    font-weight: 600;
}

.login-info h2 {
    margin-bottom: 30px;
    color: var(--dark-color);
}

.testimonial {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--dark-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.testimonial-author h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.testimonial-author p {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.signup-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

.signup-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.signup-form {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.terms-checkbox {
    display: flex;
    align-items: flex-start;
}

.terms-checkbox input {
    margin-right: 10px;
    margin-top: 5px;
}

.terms-checkbox label {
    font-size: 0.9rem;
    line-height: 1.4;
}

.terms-checkbox a {
    color: var(--primary-color);
}

.signup-info h3 {
    margin-bottom: 30px;
    color: var(--dark-color);
}

.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.step {
    display: flex;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.step-content p {
    color: var(--gray-color);
}

.signup-cta {
    margin-top: 40px;
    text-align: center;
}

.signup-cta p {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.plans-section {
    padding: 100px 0;
}

.plan-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px 0;
}

.plan-toggle span {
    margin: 0 15px;
}

.discount {
    background-color: #d4edda;
    color: #155724;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-left: 5px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.price.annual {
    display: none;
}

/* Responsive Design */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: var(--transition);
        opacity: 0;
    }

    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
    }

    .main-nav li {
        margin: 15px 0;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .api-cards, .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}
