/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Dark theme colors - default */
    --background: #0a0a0a;
    --foreground: #fafafa;
    --card: #1a1a1a;
    --card-foreground: #fafafa;
    --popover: #0a0a0a;
    --popover-foreground: #fafafa;
    --primary: #3b82f6;
    --primary-foreground: #f8fafc;
    --secondary: #262626;
    --secondary-foreground: #fafafa;
    --muted: #262626;
    --muted-foreground: #a1a1aa;
    --accent: #262626;
    --accent-foreground: #fafafa;
    --destructive: #dc2626;
    --destructive-foreground: #fef2f2;
    --border: #262626;
    --input: #262626;
    --ring: #3b82f6;
    
    /* Typography */
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Radius */
    --radius: 0.5rem;
    --radius-sm: 0.25rem;
    --radius-lg: 0.75rem;
    
    /* Shadows */
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: between;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
}

.logo i {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: var(--spacing-xl);
    margin-left: auto;
    margin-right: var(--spacing-xl);
}

.nav-desktop button {
    background: none;
    border: none;
    color: var(--foreground);
    font-size: 0.875rem;
    font-weight: 500;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-desktop button:hover {
    color: var(--primary);
    background-color: var(--muted);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-left: auto;
}


.quote-btn {
    display: none;
}

.mobile-menu-btn {
    display: flex;
    background: none;
    border: none;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-menu-btn:hover {
    background-color: var(--muted);
}

.mobile-menu-btn i {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--foreground);
}

.nav-mobile {
    display: none;
    background-color: var(--card);
    border-top: 1px solid var(--border);
}

.nav-mobile.show {
    display: block;
}

.nav-mobile-content {
    padding: var(--spacing-sm) var(--spacing-sm) var(--spacing-md);
}

.nav-mobile-content button {
    display: block;
    width: 100%;
    text-align: left;
    padding: var(--spacing-md);
    font-size: 1rem;
    font-weight: 500;
    color: var(--foreground);
    background: none;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-mobile-content button:hover {
    color: var(--primary);
    background-color: var(--muted);
}

.mobile-quote-btn {
    padding-top: var(--spacing-sm);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    border: 1px solid transparent;
    padding: var(--spacing-sm) var(--spacing-md);
}

.btn i {
    width: 1rem;
    height: 1rem;
}

.btn-lg {
    font-size: 1rem;
    padding: var(--spacing-md) var(--spacing-xl);
}

.btn-lg i {
    width: 1.25rem;
    height: 1.25rem;
}

.btn-full {
    width: 100%;
}

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

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

.btn-outline {
    background-color: transparent;
    color: var(--foreground);
    border-color: var(--border);
}

.btn-outline:hover {
    background-color: var(--accent);
    color: var(--accent-foreground);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), 
                      url('attached_assets/generated_images/Premium_custom_PC_hero_image_1b384040.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    text-align: center;
}

.hero-inner {
    max-width: 4rem;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
}

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

.hero-description {
    font-size: 1.25rem;
    color: #e5e7eb;
    margin-bottom: var(--spacing-xl);
    max-width: 3rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
    color: #d1d5db;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.hero-feature i {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}

.hero-feature span {
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    justify-content: center;
    align-items: center;
}

.hero .btn-outline {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(4px);
}

.hero .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    animation: bounce 2s infinite;
}

.scroll-indicator-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.scroll-indicator span {
    font-size: 0.875rem;
}

.scroll-indicator-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 1.25rem;
    display: flex;
    justify-content: center;
}

.scroll-indicator-wheel {
    width: 0.25rem;
    height: 0.75rem;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 0.125rem;
    margin-top: var(--spacing-sm);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Section styles */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: var(--spacing-md);
}

.section-header p {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 3rem;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: var(--spacing-3xl) 0;
    background-color: var(--background);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-3xl);
}

.service-card {
    position: relative;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.service-card.popular {
    border-color: var(--primary);
    border-width: 2px;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: var(--primary-foreground);
    font-size: 0.875rem;
    font-weight: 500;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius);
}

.service-header {
    text-align: center;
    padding-bottom: var(--spacing-md);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(29, 78, 216, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.service-icon i {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.service-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: var(--spacing-sm);
}

.service-header p {
    color: var(--muted-foreground);
}

.service-features {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

.service-features li {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    margin-bottom: var(--spacing-md);
}

.service-features i {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
    margin-right: var(--spacing-sm);
    flex-shrink: 0;
}

.service-features span {
    color: var(--muted-foreground);
}

.additional-services {
    margin-top: var(--spacing-3xl);
}

.additional-services-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.additional-services-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: var(--spacing-sm);
}

.additional-services-header p {
    color: var(--muted-foreground);
}

.additional-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

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

.additional-service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: var(--muted);
    border-radius: 50%;
    margin-bottom: var(--spacing-md);
}

.additional-service-icon i {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--muted-foreground);
}

.additional-service h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: var(--spacing-sm);
}

.additional-service p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* About Section */
.about {
    padding: var(--spacing-3xl) 0;
    background-color: var(--background);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    margin-bottom: var(--spacing-3xl);
}

.about-image-section {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
}

.about-card-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.about-card-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(29, 78, 216, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-card-icon i {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.about-card-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
}

.about-card-header p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.about-card p {
    color: var(--muted-foreground);
}

.about-text-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: var(--spacing-md);
}

.about-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.about-highlight {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.about-highlight i {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}

.about-highlight span {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

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

.certifications h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: var(--spacing-md);
}

.certification-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.badge {
    background-color: var(--secondary);
    color: var(--secondary-foreground);
    font-size: 0.75rem;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.stat-card {
    text-align: center;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(29, 78, 216, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.stat-icon i {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Skills and Business Container */
.skills-business-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-xl);
}

.skills-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
}

.skills-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.skills-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

.skill-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.skill-header span:first-child {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

.skill-header span:last-child {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.skill-bar {
    width: 100%;
    height: 0.5rem;
    background-color: var(--muted);
    border-radius: var(--radius);
}

.skill-progress {
    height: 100%;
    background-color: var(--primary);
    border-radius: var(--radius);
    transition: width 1s ease-in-out;
}

/* Business Advertisement */
.business-ad-card {
    background-color: var(--card);
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
}

.business-ad-content {
    display: flex;
    align-items: start;
    gap: var(--spacing-lg);
}

.business-ad-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.business-ad-icon i {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.business-ad-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: var(--spacing-sm);
}

.business-ad-content p {
    color: var(--muted-foreground);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.business-ad-content .btn {
    margin-top: var(--spacing-sm);
}

/* Contact Section */
.contact {
    padding: var(--spacing-3xl) 0;
    background-color: rgba(39, 39, 42, 0.3);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: var(--spacing-lg);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-detail {
    display: flex;
    align-items: start;
    gap: var(--spacing-md);
}

.contact-detail-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(29, 78, 216, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon i {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.contact-detail h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
}

.contact-detail-content {
    color: var(--foreground);
    font-weight: 500;
}

.contact-detail-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.consultation-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.consultation-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.consultation-header i {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.consultation-header h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
}

.consultation-card p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.contact-form-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
}

.contact-form-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.contact-form-header i {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.contact-form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.form-group label {
    color: var(--foreground);
    font-weight: 500;
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-md);
    border: 1px solid var(--input);
    background-color: var(--background);
    color: var(--foreground);
    border-radius: var(--radius);
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(29, 78, 216, 0.1);
}

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

/* Footer */
.footer {
    background-color: var(--card);
    border-top: 1px solid var(--border);
    padding: var(--spacing-2xl) 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
}

.footer-logo i {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.footer-brand p {
    color: var(--muted-foreground);
    max-width: 24rem;
}

.footer-email {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.footer-email i {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
}

.footer-email button {
    color: var(--foreground);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease;
    padding: var(--spacing-sm);
    border-radius: var(--radius);
}

.footer-email button:hover {
    color: var(--primary);
    background-color: var(--muted);
}

.footer-email i:last-child {
    width: 0.75rem;
    height: 0.75rem;
    color: var(--muted-foreground);
}

.footer-links h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: var(--spacing-md);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-links button {
    color: var(--muted-foreground);
    background: none;
    border: none;
    font-size: 0.875rem;
    cursor: pointer;
    transition: color 0.2s ease;
    padding: var(--spacing-sm);
    border-radius: var(--radius);
    text-align: left;
}

.footer-links button:hover {
    color: var(--primary);
    background-color: var(--muted);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    margin-top: var(--spacing-2xl);
    padding-top: var(--spacing-xl);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: center;
    text-align: center;
}

.footer-copyright,
.footer-tagline {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Toast */
.toast {
    position: fixed;
    bottom: var(--spacing-md);
    right: var(--spacing-md);
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast.hidden {
    display: none;
}

.toast-content {
    display: flex;
    align-items: start;
    gap: var(--spacing-md);
}

.toast-content i {
    width: 1.25rem;
    height: 1.25rem;
    color: #22c55e;
    margin-top: 2px;
    flex-shrink: 0;
}

.toast-title {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: var(--spacing-xs);
}

.toast-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .quote-btn {
        display: flex;
    }
    
    .footer-bottom-content {
        flex-direction: row;
        justify-content: between;
        text-align: left;
    }
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero h1 {
        font-size: 4.5rem;
    }
    
    .hero-inner {
        max-width: none;
    }
    
    .hero-description {
        max-width: none;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .additional-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .skills-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr 2fr;
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 5.5rem;
    }
    
    .section-header h2 {
        font-size: 3rem;
    }
    
    .section-header p {
        max-width: none;
    }
}

/* Mobile responsiveness for skills and business sections */
@media (max-width: 767px) {
    .skills-business-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
}