/* style.css - Conceptswiz Modern Design */
:root {
    --primary: #3498db;
    --primary-dark: #2980b9;
    --primary-light: #ebf5fb;
    --secondary: #2c3e50;
    --accent: #e74c3c;
    --success: #27ae60;
    --warning: #f39c12;
    --light: #f8f9fa;
    --dark: #343a40;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --border: #dee2e6;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --border-radius-lg: 12px;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--secondary);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

.section-title {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--secondary);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    margin: 15px auto;
    border-radius: 2px;
}

.section-sub {
    text-align: center;
    color: var(--gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--primary);
    color: white;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 1rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-accent {
    background: var(--accent);
}

.btn-accent:hover {
    background: #c0392b;
}

/* Header & Navigation */
.topbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-light);
    transition: var(--transition);
}

.logo:hover {
    transform: rotate(10deg);
}

.brand-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.menu a {
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    color: var(--secondary);
    padding: 8px 0;
}

.menu a:hover {
    color: var(--primary);
}

.menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.menu a:hover::after {
    width: 100%;
}

.menu .cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
}

.menu .cta:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.menu .cta::after {
    display: none;
}

.burger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary);
    padding: 5px;
    transition: var(--transition);
}

.burger:hover {
    color: var(--primary);
}
urger
/* Hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.05"><polygon fill="%233498db" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero img {
    max-width: 600px;
    margin: 0 auto 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.3rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Cards & Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.thumb {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover .thumb img {
    transform: scale(1.1);
}

.card-body {
    padding: 25px;
}

.card .title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--secondary);
    line-height: 1.4;
}

.card .description {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.card .meta {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Opportunity Sections */
.opportunity-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.opportunity-card {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    padding: 35px;
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
}

.opportunity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.opportunity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.opportunity-card h3 {
    margin-top: 0;
    color: var(--secondary);
    font-size: 1.5rem;
    border-bottom: 2px solid var(--gray-light);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.opportunity-card ul {
    padding-left: 20px;
    margin: 20px 0;
}

.opportunity-card li {
    margin-bottom: 10px;
    line-height: 1.6;
    position: relative;
    padding-left: 25px;
}

.opportunity-card li::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
    position: absolute;
    left: 0;
    background: var(--primary-light);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.payment-highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    margin: 25px 0;
    font-weight: bold;
    font-size: 1.3rem;
    box-shadow: var(--shadow);
}

.contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    padding: 18px;
    border-radius: var(--border-radius);
    margin-top: 25px;
    transition: var(--transition);
}

.contact-info:hover {
    background: var(--primary);
    color: white;
}

.contact-info a {
    color: inherit;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

/* Improvement Areas */
.improvement-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.improvement-area {
    background: var(--primary-light);
    padding: 20px 15px;
    border-radius: var(--border-radius);
    text-align: center;
    border-left: 4px solid var(--primary);
    transition: var(--transition);
    font-weight: 500;
}

.improvement-area:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Formspree Contact Form Styling */
.contact-form {
    background: #f8fafc;
    padding: 3rem 1rem;
    margin-top: 3rem;
}

.fs-form {
    max-width: 600px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.fs-field {
    display: flex;
    flex-direction: column;
}

.fs-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #334155;
}

.fs-input, .fs-textarea {
    padding: 0.75rem;
    border: 1px solid #cbd5e1;
    border-radius: 0.375rem;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.fs-input:focus, .fs-textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.fs-textarea {
    resize: vertical;
    min-height: 120px;
}

.fs-button-group {
    margin-top: 1rem;
}

.fs-button {
    background-color: #3b82f6;
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.fs-button:hover {
    background-color: #2563eb;
}

/* Footer */
.site-footer {
    background: var(--secondary);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    margin-top: 0;
    color: white;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 15px;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section a {
    display: block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    padding: 5px 0;
}

.footer-section a:hover {
    color: white;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
    font-size: 1.2rem;
    margin-bottom: 0;
    padding: 0;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px) scale(1.1);
    color: white;
}

.visitor-counter {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.live-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: var(--success);
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { 
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.7);
    }
    70% { 
        opacity: 0.7;
        box-shadow: 0 0 0 10px rgba(39, 174, 96, 0);
    }
    100% { 
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0);
    }
}

.copyright {
    text-align: center;
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

/* Mobile Menu Fix */
@media (max-width: 768px) {
    .burger {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: none;
        border: 2px solid var(--primary);
        border-radius: 4px;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--primary);
        transition: var(--transition);
        z-index: 1001;
    }

    .burger:hover {
        background: var(--primary-light);
    }

    .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
        padding: 80px 20px 40px;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        z-index: 1000;
    }

    .menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .menu a {
        font-size: 1.2rem;
        padding: 12px 30px;
        border-radius: 8px;
        transition: var(--transition);
        width: 200px;
        text-align: center;
        border: 1px solid transparent;
    }

    .menu a:hover {
        background: var(--primary-light);
        border-color: var(--primary);
    }

    .menu .cta {
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        color: white;
        margin-top: 10px;
        border: none;
    }

    .menu .cta:hover {
        background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
        transform: translateY(-2px);
    }
}

    .menu .cta:hover {
        background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
        transform: translateY(-3px);
    }

    
    .hero {
        padding: 60px 0;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        border-radius: var(--border-radius);
        width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .opportunity-cards {
        grid-template-columns: 1fr;
    }


@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 50px 0;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .opportunity-card {
        padding: 25px 20px;
    }
    
    .improvement-areas {
        grid-template-columns: 1fr;
    }
    
    .grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .card-body {
        padding: 20px;
    }
    
    .payment-highlight {
        font-size: 1.1rem;
        padding: 15px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.hidden {
    display: none;
}

.fade-in {
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}