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

html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #8b5cf6;
    --primary-dark: #7c3aed;
    --primary-light: #a855f7;
    --secondary-color: #c084fc;
    --accent-color: #ddd6fe;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --background-light: #fafaf9;
    --background-purple: #f8f4ff;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    --gradient-light: linear-gradient(135deg, #ddd6fe 0%, #c4b5fd 100%);
    --shadow-light: 0 4px 20px rgba(139, 92, 246, 0.1);
    --shadow-medium: 0 8px 40px rgba(139, 92, 246, 0.15);
    --shadow-heavy: 0 20px 60px rgba(139, 92, 246, 0.2);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    font-feature-settings: 'kern' 1, 'liga' 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: var(--shadow-light);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Header Top Bar */
.header-top {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: var(--white);
    padding: 0;
    font-size: 0.8rem;
    height: 44px;
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    position: relative;
}

.header-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
}

.header-info {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    height: 100%;
    flex-wrap: nowrap;
}

.contact-info {
    display: flex;
    gap: 0;
    flex-wrap: nowrap;
    align-items: stretch;
    height: 100%;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
    white-space: nowrap;
    height: 100%;
    padding: 0 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item:last-child {
    border-right: none;
}

.info-item:hover {
    background-color: rgba(139, 92, 246, 0.15);
}

.info-item i {
    color: var(--accent-color);
    font-size: 0.75rem;
    width: 12px;
    text-align: center;
    flex-shrink: 0;
}

.info-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.2;
}

.info-item a:hover {
    color: var(--accent-color);
}

.info-item span {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.2;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: nowrap;
    flex-shrink: 0;
    height: 100%;
    padding-right: 0.5rem;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0 1.2rem;
    border-radius: 22px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    height: 32px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    min-width: 140px;
}

.header-cta::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 ease;
}

.header-cta:hover::before {
    left: 100%;
}

.header-cta:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.header-cta i {
    font-size: 0.7rem;
}

.social-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    height: 100%;
    padding-left: 1rem;
    position: relative;
}

.social-links::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
}

.social-link {
    width: 30px;
    height: 30px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.75rem;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.3s ease;
    z-index: 0;
}

.social-link:hover::before {
    left: 0;
}

.social-link i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
    border-color: var(--primary-color);
}

/* Main Navigation */
.navbar {
    padding: 0.7rem 0;
    background: var(--white);
    border-bottom: 1px solid #e5e7eb;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
}

.brand-logo img {
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(139, 92, 246, 0.2));
    width: 40px;
    height: 40px;
}

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

.brand-name {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    margin: 0;
}

.brand-tagline {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 500;
    margin-top: 0.15rem;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.9rem;
}

.nav-link:hover {
    color: var(--primary-color);
    background: var(--background-purple);
}

.nav-link i {
    font-size: 0.8rem;
    color: var(--text-light);
}

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

.dropdown-arrow {
    font-size: 0.7rem !important;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 280px;
    border-radius: 15px;
    box-shadow: var(--shadow-heavy);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
    z-index: 1000;
    border: 1px solid #e5e7eb;
}

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

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    font-weight: 500;
}

.dropdown-link:hover {
    background: var(--background-purple);
    color: var(--primary-color);
}

.dropdown-link i {
    width: 20px;
    color: var(--text-light);
    font-size: 1rem;
}

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

.nav-cta .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    border-radius: 22px;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 130px 0 100px;
    background: var(--gradient-primary);
    color: var(--white);
    overflow: visible;
    position: relative;
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M20 20c0 11.046-8.954 20-20 20s-20-8.954-20-20 8.954-20 20-20 20 8.954 20 20z'/%3E%3C/g%3E%3C/svg%3E");
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight {
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(221, 214, 254, 0.5);
}

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

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
    color: var(--primary-dark);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

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

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

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.hero-icon {
    font-size: 8rem;
    color: #ffd700;
    opacity: 0.8;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8f9ff;
}

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

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-list {
    list-style: none;
    margin-bottom: 2rem;
}

.about-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #333;
}

.about-list i {
    color: #667eea;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.about-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.stat-card:nth-child(3) {
    grid-column: span 2;
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #f8f9ff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: transform 0.3s ease;
}

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

.pricing-card.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd700;
    color: #333;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0.2rem;
}

.period {
    font-size: 1rem;
    opacity: 0.8;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.pricing-features i {
    color: #667eea;
    margin-right: 1rem;
    font-size: 1rem;
}

.featured .pricing-features i {
    color: #ffd700;
}

.btn-outline {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-outline:hover {
    background: #667eea;
    color: white;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.contact .section-header h2,
.contact .section-header p {
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: #ffd700;
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-details p {
    opacity: 0.9;
    line-height: 1.5;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

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

/* Recent Posts Section */
.recent-posts-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.recent-posts-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 20%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.posts-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.post-link-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(102, 126, 234, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.post-link-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.post-link-item:hover::before {
    transform: scaleX(1);
}

.post-link-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.12);
    border-color: rgba(102, 126, 234, 0.15);
}

.post-title-link {
    color: #1e293b;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.5;
    display: block;
    transition: all 0.3s ease;
    position: relative;
}

.post-title-link:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateX(5px);
}

.post-title-link::after {
    content: '→';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    opacity: 0;
    color: #667eea;
    font-weight: bold;
    transition: all 0.3s ease;
}

.post-title-link:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.posts-cta {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.posts-cta p {
    margin: 0 0 1.5rem 0;
    color: #475569;
    font-size: 1.1rem;
}

/* Responsive Design for Recent Posts */
@media (max-width: 768px) {
    .recent-posts-section {
        padding: 60px 0;
    }
    
    .posts-list {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .post-link-item {
        padding: 1.2rem 1.5rem;
    }
    
    .post-title-link {
        font-size: 1rem;
    }
    
    .posts-cta {
        padding: 1.5rem;
    }
}

/* Footer - Compact Corporate Design */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: var(--white);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.06) 0%, rgba(139, 92, 246, 0.02) 100%);
    pointer-events: none;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Footer Main Content */
.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    padding: 2.5rem 0 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    align-items: start;
}

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

/* Company Section */
.company-section {
    max-width: 400px;
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.2rem;
}

.footer-logo img {
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(139, 92, 246, 0.2);
}

.footer-logo .brand-text h3 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.footer-logo .brand-tagline {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    margin-top: 0.2rem;
    letter-spacing: 0.3px;
}

.company-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.footer-stats {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.footer-stat {
    text-align: center;
    flex: 1;
    padding: 0.8rem 0.5rem;
    background: rgba(139, 92, 246, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(139, 92, 246, 0.12);
}

.footer-stat .stat-number {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-light);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.footer-stat .stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Footer Headings */
.footer-heading {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Compact Link Grid Layout */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
}

/* Single Column Links */
.footer-links-single {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 0.4rem 0;
    transition: all 0.3s ease;
    border-radius: 4px;
    position: relative;
    font-weight: 400;
}

.footer-link:hover {
    color: var(--primary-light);
    transform: translateX(2px);
}

/* Compact Contact Section */
.contact-info-compact {
    margin-bottom: 1.5rem;
}

.contact-quick {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-link:hover {
    color: var(--primary-light);
    transform: translateX(2px);
}

.contact-link i {
    width: 16px;
    color: var(--primary-color);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.business-hours {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8rem;
    padding: 0.6rem 0.8rem;
    background: rgba(139, 92, 246, 0.08);
    border-radius: 6px;
    border: 1px solid rgba(139, 92, 246, 0.15);
}

.business-hours i {
    color: var(--primary-color);
    font-size: 0.85rem;
}

/* Compact CTA Button */
.footer-cta {
    margin-top: 1.5rem;
    text-align: center;
}

.btn-footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.4s ease;
}

.btn-footer:hover::before {
    left: 100%;
}

.btn-footer:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.35);
    background: linear-gradient(135deg, #5a6fd8 0%, #6c42a0 100%);
}

.btn-footer i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-footer:hover i {
    transform: translateX(1px);
}

/* Footer Bottom */
.footer-bottom {
    padding: 1.5rem 0;
    background: rgba(0, 0, 0, 0.15);
}

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

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

.footer-legal p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

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

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

.social-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    /* Header Responsive */
    .header-top {
        height: 40px;
    }
    
    .info-item {
        font-size: 0.75rem;
        padding: 0 1rem;
    }
    
    .info-item i {
        font-size: 0.7rem;
    }
    
    .header-cta {
        font-size: 0.7rem;
        height: 28px;
        min-width: 120px;
        letter-spacing: 0.3px;
    }
    
    .social-link {
        width: 26px;
        height: 26px;
        font-size: 0.7rem;
    }
    
    .header-actions {
        gap: 1rem;
        padding-right: 0.3rem;
    }
    
    .social-links {
        gap: 0.4rem;
        padding-left: 0.8rem;
    }
    
    .social-links::before {
        height: 16px;
    }
    
    /* Hero Responsive */
    .hero {
        padding: 115px 0 80px;
        min-height: calc(100vh - 125px);
    }
    
    .nav-main {
        gap: 1rem;
    }
    
    .nav-cta {
        display: none;
    }
    
    /* Footer Responsive */
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .company-section {
        grid-column: span 2;
        max-width: none;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-stats {
        justify-content: center;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    /* Header Mobile */
    .header-top {
        height: 36px;
    }
    
    .info-item {
        font-size: 0.7rem;
        padding: 0 0.8rem;
    }
    
    .info-item i {
        font-size: 0.65rem;
        width: 10px;
    }
    
    .header-cta {
        font-size: 0.65rem;
        height: 24px;
        min-width: 100px;
        letter-spacing: 0.2px;
    }
    
    .header-actions {
        gap: 0.8rem;
        padding-right: 0.2rem;
    }
    
    .social-link {
        width: 22px;
        height: 22px;
        font-size: 0.65rem;
    }
    
    .social-links {
        gap: 0.3rem;
        padding-left: 0.6rem;
    }
    
    .social-links::before {
        height: 14px;
    }
    
    /* Hero Mobile */
    .hero {
        padding: 105px 0 60px;
        min-height: calc(100vh - 105px);
    }
    
    .brand-text {
        display: none;
    }
    
    .nav-main {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        justify-content: center;
        padding: 1rem 2rem;
        margin: 0.5rem 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--background-light);
        margin-top: 0.5rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Footer Mobile */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .company-section {
        text-align: center;
        grid-column: span 1;
    }
    
    .footer-stats {
        justify-content: space-between;
        gap: 1.5rem;
    }
    
    .contact-item {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }
    
    .legal-links {
        justify-content: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-visual {
        grid-template-columns: 1fr;
    }

    .stat-card:nth-child(3) {
        grid-column: span 1;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Footer Mobile Adjustments */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0 1rem;
    }
    
    .company-section {
        max-width: none;
    }
    
    .footer-stats {
        gap: 0.8rem;
    }
    
    .footer-stat {
        padding: 0.6rem 0.4rem;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .contact-quick {
        gap: 0.6rem;
    }
    
    .btn-footer {
        padding: 0.9rem 1.2rem;
        font-size: 0.85rem;
        letter-spacing: 0.4px;
    }
    
    .footer-bottom {
        padding: 1.2rem 0;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 480px) {
    /* Header Mobile Small */
    .header-top {
        display: none;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 0.7rem 1.2rem;
    }
    
    /* Footer Mobile Small */
    .footer-logo {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-logo .brand-text {
        text-align: center;
    }
    
    .footer-stats {
        justify-content: space-around;
        flex-direction: row;
        gap: 1rem;
    }
    
    .footer-stat .stat-number {
        font-size: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon i {
        font-size: 1.2rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-heading {
        text-align: center;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* New Homepage Sections Styles */

/* Hero Location Chips */
.hero-locations {
    margin-top: 2rem;
    text-align: center;
}

.hero-locations p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.location-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.location-chip {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.location-chip:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
    color: #ffd700;
}

.location-chip i {
    font-size: 0.75rem;
}

/* Featured Locations Section */
.locations {
    padding: 80px 0;
    background: white;
}

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

.location-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.location-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
}

.location-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.location-icon i {
    font-size: 1.5rem;
    color: white;
}

.location-card h3 {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.location-state {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.location-stats {
    margin-bottom: 1.5rem;
}

.stat {
    background: #f8f9ff;
    color: #667eea;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

/* Recent Services Section */
.recent-services {
    padding: 80px 0;
    background: #f8f9ff;
}

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

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.service-meta {
    margin-bottom: 1rem;
}

.service-location {
    color: #667eea;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 1.4;
}

.service-card h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-card h3 a:hover {
    color: #667eea;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #764ba2;
    transform: translateX(3px);
}

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

/* Service Categories Section */
.service-categories {
    padding: 80px 0;
    background: white;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.1);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.category-icon i {
    font-size: 2rem;
    color: white;
}

.category-card h3 {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.category-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.category-card li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 20px;
}

.category-card li:last-child {
    border-bottom: none;
}

.category-card li:before {
    content: '•';
    color: #667eea;
    position: absolute;
    left: 0;
    top: 8px;
    font-weight: bold;
}

.category-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.category-link:hover {
    color: #764ba2;
    transform: translateX(3px);
}

/* Enhanced Mobile Responsiveness for New Sections */
@media (max-width: 768px) {
    .hero-locations {
        margin-top: 1.5rem;
    }
    
    .location-chips {
        justify-content: center;
        gap: 0.25rem;
    }
    
    .location-chip {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
    
    .locations-grid,
    .services-grid,
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .location-card,
    .service-card,
    .category-card {
        padding: 1.5rem;
    }
    
    .locations,
    .recent-services,
    .service-categories {
        padding: 60px 0;
    }
    
    .category-card ul {
        text-align: center;
    }
    
    .category-card li {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .location-chips {
        flex-direction: column;
        align-items: center;
    }
    
    .location-chip {
        width: auto;
        min-width: 120px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0 60px;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

    .feature-card,
    .contact-form {
        padding: 1.5rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* Compact Hero Screenshot Styles */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    min-height: 350px;
}

.hero-screenshot {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    transition: all 0.4s ease;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.15));
    animation: fadeInUp 0.8s ease-out;
}

.hero-screenshot:hover {
    transform: translateY(-3px);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.screenshot-frame {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 
        0 0 0 1px rgba(0, 0, 0, 0.05),
        0 15px 30px rgba(0, 0, 0, 0.15),
        0 0 60px rgba(139, 92, 246, 0.08);
    transition: all 0.3s ease;
    width: 100%;
    height: auto;
}

.screenshot-header {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e2e8f0;
}

.screenshot-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.screenshot-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #475569;
}

.screenshot-actions {
    display: flex;
    gap: 6px;
    color: #94a3b8;
    font-size: 10px;
}

.screenshot-content {
    padding: 0;
    background: #f8fafc;
    min-height: 250px;
}

/* Compact Dashboard Styles */
.compact-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.nav-tabs {
    display: flex;
    gap: 2px;
}

.tab {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #64748b;
}

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

.tab:not(.active):hover {
    background: #f1f5f9;
    color: #374151;
}

.header-user {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #64748b;
}

.header-user i {
    color: #ef4444;
}

/* Compact KPI Cards */
.compact-kpis {
    display: flex;
    gap: 12px;
    padding: 12px 16px;
    margin-bottom: 12px;
}

.mini-card {
    flex: 1;
    background: white;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: all 0.2s ease;
}

.mini-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 20px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: #f8fafc;
}

.card-content {
    flex: 1;
}

.card-value {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1;
}

.card-label {
    font-size: 10px;
    color: #64748b;
    margin-top: 2px;
}

.card-trend {
    font-size: 10px;
    font-weight: 600;
    color: #10b981;
    background: #dcfce7;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Compact Widgets */
.compact-widgets {
    display: flex;
    gap: 12px;
    padding: 0 16px 16px 16px;
}

.mini-chart, .mini-schedule {
    flex: 1;
    background: white;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.chart-header, .schedule-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 600;
    color: #374151;
}

.chart-value, .time-now {
    font-size: 10px;
    color: #64748b;
}

.mini-bars {
    display: flex;
    align-items: end;
    gap: 4px;
    height: 40px;
}

.bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary-color), var(--primary-light));
    border-radius: 2px 2px 0 0;
    min-height: 4px;
    transition: all 0.2s ease;
}

.bar.active {
    background: linear-gradient(to top, #fbbf24, #f59e0b);
}

.bar:hover {
    transform: scaleY(1.1);
}

.appointment-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.appointment {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.appointment:hover {
    background: #f8fafc;
}

.appointment.current {
    background: rgba(139, 92, 246, 0.05);
    border-left: 2px solid var(--primary-color);
}

.apt-time {
    font-size: 10px;
    font-weight: 600;
    color: #374151;
    min-width: 30px;
}

.apt-info {
    flex: 1;
}

.apt-customer {
    font-size: 11px;
    font-weight: 500;
    color: #1e293b;
    line-height: 1;
}

.apt-service {
    font-size: 9px;
    color: #64748b;
    margin-top: 1px;
}

.apt-status {
    font-size: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.apt-status.current {
    color: #10b981;
}

.apt-status.next {
    color: #3b82f6;
}

.apt-status.confirmed {
    color: #f59e0b;
}

.dashboard-widget {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    overflow: hidden;
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #f1f5f9;
}

.widget-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.widget-controls select {
    padding: 6px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 12px;
    background: white;
    color: #64748b;
}

.widget-actions .btn-small {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 500;
}

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

/* Chart Widget */
.chart-container {
    padding: 0 24px 24px 24px;
}

.chart-legend {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #64748b;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 3px;
}

.legend-color.revenue {
    background: var(--primary-color);
}

.legend-color.bookings {
    background: #94a3b8;
}

.chart-area {
    position: relative;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 12px;
    height: 120px;
    margin-bottom: 12px;
}

.chart-bar-group {
    flex: 1;
    display: flex;
    align-items: end;
    gap: 4px;
    position: relative;
}

.chart-bar-group.active {
    transform: scale(1.05);
}

.chart-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    min-height: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.chart-bar.revenue {
    background: linear-gradient(to top, var(--primary-color), var(--primary-light));
}

.chart-bar.bookings {
    background: linear-gradient(to top, #94a3b8, #cbd5e1);
}

.chart-bar:hover::after {
    content: attr(data-value);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1e293b;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    white-space: nowrap;
    margin-bottom: 4px;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #94a3b8;
}

/* Schedule Widget */
.schedule-list {
    padding: 0;
}

.appointment-item {
    display: flex;
    padding: 16px 24px;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.2s ease;
}

.appointment-item:last-child {
    border-bottom: none;
}

.appointment-item:hover {
    background: #f8fafc;
}

.appointment-item.current {
    background: rgba(139, 92, 246, 0.05);
    border-left: 4px solid var(--primary-color);
}

.appointment-time {
    min-width: 80px;
    margin-right: 16px;
}

.appointment-time .time {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.status {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.status.current {
    background: #dcfce7;
    color: #16a34a;
}

.status.upcoming {
    background: #dbeafe;
    color: #2563eb;
}

.status.confirmed {
    background: #fef3c7;
    color: #d97706;
}

.status.pending {
    background: #f3f4f6;
    color: #6b7280;
}

.appointment-details {
    flex: 1;
}

.customer-name {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.service-info {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 4px;
}

.staff-info {
    font-size: 12px;
    color: #94a3b8;
}

/* Dashboard Widgets */
.dashboard-widgets {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.widget-row {
    display: flex;
    gap: 12px;
}

.widget {
    background: white;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
    flex: 1;
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.widget-title {
    font-size: 12px;
    font-weight: 500;
    color: #64748b;
}

.widget-icon {
    color: var(--primary-color);
    font-size: 14px;
}

.widget-value {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.widget-change {
    font-size: 11px;
    font-weight: 500;
}

.widget-change.positive {
    color: #10b981;
}

/* Chart Widget */
.chart-widget {
    flex: 2;
}

.chart-legend {
    display: flex;
    gap: 12px;
    font-size: 11px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.legend-color {
    width: 8px;
    height: 8px;
    border-radius: 2px;
}

.legend-color.revenue { background: var(--primary-color); }
.legend-color.bookings { background: var(--secondary-color); }

.chart-container {
    margin-top: 12px;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 6px;
    height: 60px;
    margin-bottom: 8px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary-color), var(--primary-light));
    border-radius: 2px 2px 0 0;
    min-height: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.chart-bar.active {
    background: linear-gradient(to top, #fbbf24, #f59e0b);
}

.chart-bar:hover {
    transform: scaleY(1.1);
}

.bar-value {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
    font-weight: 600;
    color: #64748b;
    white-space: nowrap;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #94a3b8;
}

/* Mobile Screenshot Content */

.screenshot-frame.mobile {
    background: linear-gradient(145deg, #1f2937, #374151);
}

.mobile-header {
    background: #000;
    border-radius: 17px 17px 0 0;
    padding: 8px;
}

.mobile-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-size: 10px;
    font-weight: 600;
}

.signal-bars {
    display: flex;
    gap: 2px;
    align-items: end;
}

.signal-bars .bar {
    width: 3px;
    background: white;
    border-radius: 1px;
}

.signal-bars .bar:nth-child(1) { height: 4px; }
.signal-bars .bar:nth-child(2) { height: 6px; }
.signal-bars .bar:nth-child(3) { height: 8px; }
.signal-bars .bar:nth-child(4) { height: 10px; }

.mobile-content {
    background: white;
    height: calc(100% - 24px);
    border-radius: 0 0 17px 17px;
    overflow: hidden;
}

.app-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
}

.booking-form {
    padding: 16px;
}

.service-selection {
    margin-bottom: 16px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.service-item.selected {
    border-color: var(--primary-color);
    background: rgba(139, 92, 246, 0.05);
}

.service-icon {
    font-size: 20px;
}

.service-details {
    flex: 1;
}

.service-name {
    font-size: 12px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2px;
}

.service-duration {
    font-size: 10px;
    color: #6b7280;
}

.service-item.selected .fas {
    color: var(--primary-color);
}

.time-slots {
    margin-bottom: 16px;
}

.slot-date {
    font-size: 12px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.slots-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.time-slot {
    padding: 8px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    text-align: center;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.time-slot.selected {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-book {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

/* Tablet Screenshot Content */

.screenshot-frame.tablet {
    background: linear-gradient(145deg, #e5e7eb, #f3f4f6);
    padding: 2px;
}

.tablet-header {
    background: #000;
    border-radius: 10px 10px 0 0;
    padding: 6px 12px;
}

.tablet-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-size: 10px;
    font-weight: 600;
}

.tablet-content {
    background: white;
    height: calc(100% - 20px);
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}

.pos-interface {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pos-header {
    background: linear-gradient(135deg, #1f2937, #374151);
    color: white;
    padding: 10px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.pos-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.pos-content {
    flex: 1;
    display: flex;
    padding: 12px;
    gap: 12px;
}

.cart-section {
    flex: 1;
    background: #f9fafb;
    border-radius: 6px;
    padding: 10px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 10px;
}

.cart-item:last-of-type {
    border-bottom: none;
    margin-bottom: 8px;
}

.cart-total {
    border-top: 2px solid #e5e7eb;
    padding-top: 8px;
}

.total-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
    font-size: 9px;
}

.total-line.final {
    font-weight: 700;
    font-size: 11px;
    color: var(--primary-color);
}

.payment-section {
    width: 100px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.payment-method {
    padding: 6px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    text-align: center;
    font-size: 9px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.payment-method.active {
    border-color: var(--primary-color);
    background: rgba(139, 92, 246, 0.05);
}

.payment-method i {
    display: block;
    margin-bottom: 2px;
    font-size: 12px;
}

.charge-button {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    margin-top: auto;
}


/* Responsive Design for Compact Screenshot */
@media (max-width: 1024px) {
    .hero-visual {
        padding: 30px 15px;
        min-height: 300px;
    }
    
    .hero-screenshot {
        max-width: 650px;
    }
    
    .compact-kpis {
        gap: 8px;
        padding: 10px 12px;
    }
    
    .compact-widgets {
        gap: 8px;
        padding: 0 12px 12px 12px;
    }
}

@media (max-width: 768px) {
    .hero-visual {
        padding: 20px 10px;
        min-height: 280px;
    }
    
    .hero-screenshot {
        max-width: 600px;
    }
    
    .screenshot-content {
        min-height: 220px;
    }
    
    .compact-header {
        padding: 10px 12px;
    }
    
    .nav-tabs {
        gap: 1px;
    }
    
    .tab {
        padding: 5px 8px;
        font-size: 10px;
    }
    
    .compact-kpis {
        flex-direction: column;
        gap: 6px;
        padding: 8px 12px;
    }
    
    .mini-card {
        padding: 10px;
    }
    
    .card-value {
        font-size: 14px;
    }
    
    .compact-widgets {
        flex-direction: column;
        gap: 8px;
        padding: 0 12px 12px 12px;
    }
}

@media (max-width: 480px) {
    .hero-visual {
        padding: 15px 5px;
        min-height: 250px;
    }
    
    .hero-screenshot {
        max-width: 100%;
    }
    
    .screenshot-content {
        min-height: 200px;
    }
    
    .screenshot-header {
        padding: 6px 10px;
    }
    
    .screenshot-title {
        font-size: 10px;
    }
    
    .compact-header {
        padding: 8px 10px;
    }
    
    .tab {
        padding: 4px 6px;
        font-size: 9px;
    }
    
    .compact-kpis {
        padding: 6px 10px;
    }
    
    .mini-card {
        padding: 8px;
        gap: 6px;
    }
    
    .card-icon {
        font-size: 16px;
        width: 24px;
        height: 24px;
    }
    
    .card-value {
        font-size: 12px;
    }
    
    .card-label {
        font-size: 9px;
    }
    
    .compact-widgets {
        padding: 0 10px 10px 10px;
    }
    
    .mini-bars {
        height: 30px;
        gap: 3px;
    }
    
    .apt-customer {
        font-size: 10px;
    }
    
    .apt-service {
        font-size: 8px;
    }
}