/* Sleek Professional IT Company Website Design */
:root {
    --primary: #0066FF;
    --primary-dark: #0052CC;
    --primary-light: #3385FF;
    --secondary: #00D4FF;
    --accent: #6366F1;
    --dark: #0A0E27;
    --dark-light: #1A1F3A;
    --text-primary: #1E293B;
    --text-secondary: #64748B;
    --text-light: #94A3B8;
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-gray: #F1F5F9;
    --border: #E2E8F0;
    --success: #10B981;
    --gradient-primary: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
    --gradient-dark: linear-gradient(135deg, #0A0E27 0%, #1A1F3A 100%);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
    background: var(--bg-white);
    overflow-x: hidden;
}

/* Professional Header */
.pro-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.pro-header.scrolled {
    box-shadow: var(--shadow-md);
}

.pro-header .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pro-logo {
    position: relative;
    min-width: 120px;
    height: 40px; /* keep header height while letting logo pop out */
}

.pro-logo img {
    height: 120px;
    position: absolute;
    top: -40px;
    left: 0;
    transition: all 0.3s ease;
}

.pro-logo img:hover {
    transform: scale(1.05);
}

.pro-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.pro-nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.3s;
    position: relative;
}

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

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

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

.pro-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.pro-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
    color: white;
}

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

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

/* Hero Section */
.pro-hero {
    background: var(--gradient-dark);
    color: white;
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.pro-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.pro-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
}

.pro-hero-content {
    max-width: 640px;
}

.pro-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-screen {
    width: 100%;
    max-width: 520px;
    background: #0b1020;
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    position: relative;
}

.ai-screen::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15), transparent 60%);
    pointer-events: none;
}

.ai-screen-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 1;
}

.ai-dots {
    display: flex;
    gap: 0.35rem;
}

.ai-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.ai-dot.red { background: #ff5f56; }
.ai-dot.yellow { background: #ffbd2e; }
.ai-dot.green { background: #27c93f; }

.ai-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.02em;
}

.ai-chip {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #8be9ff;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    background: rgba(0, 212, 255, 0.12);
    font-weight: 600;
}

.ai-screen-body {
    padding: 1rem 1.25rem 1.25rem;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.9rem;
    line-height: 1.65;
    color: #cfe6ff;
    position: relative;
    z-index: 1;
}

.ai-line {
    display: flex;
    gap: 0.75rem;
    margin: 0.15rem 0;
}

.ai-ln {
    width: 2.25rem;
    text-align: right;
    color: rgba(255, 255, 255, 0.35);
    flex-shrink: 0;
}

.ai-code {
    white-space: pre-wrap;
}

.ai-kw { color: #7dd3fc; font-weight: 600; }
.ai-var { color: #e2e8f0; }
.ai-fn { color: #a5b4fc; }
.ai-str { color: #7ee787; }
.ai-comment { color: rgba(255, 255, 255, 0.45); }

.ai-screen-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
    position: relative;
    z-index: 1;
}

.ai-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.ai-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.8);
    animation: ai-pulse 2s infinite;
}

.ai-pill {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #b8e6ff;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 102, 255, 0.4);
    background: rgba(0, 102, 255, 0.25);
    font-weight: 600;
}

@keyframes ai-pulse {
    0% { transform: scale(1); opacity: 0.9; }
    70% { transform: scale(1.6); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

.pro-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pro-hero h1 {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.pro-hero h1 .gradient-text {
    background: linear-gradient(135deg, #00D4FF 0%, #0066FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pro-hero p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    margin-bottom: 2.5rem;
}

.pro-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.pro-hero-features {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.pro-hero-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
}

.pro-hero-features li i {
    color: var(--secondary);
    font-size: 1.125rem;
}

/* Stats Section */
.pro-stats {
    padding: 4rem 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
}

.pro-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.pro-stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.pro-stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

/* Services Section */
.pro-services {
    padding: 6rem 0;
    background: var(--bg-light);
}

.pro-services .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.pro-section-header .badge {
    display: inline-block;
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pro-section-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.pro-section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.pro-service-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.pro-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.pro-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.pro-service-card:hover::before {
    transform: scaleX(1);
}

.pro-service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.pro-service-icon img {
    width: 36px;
    height: 36px;
}

.pro-service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.pro-service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* About Section */
.pro-about {
    padding: 6rem 0;
    background: var(--bg-white);
}

.pro-about .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.pro-about-content .badge {
    display: inline-block;
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.pro-about-content h2 {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.pro-about-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.pro-features-list {
    list-style: none;
    margin-top: 2rem;
}

.pro-features-list li {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: start;
    gap: 1rem;
}

.pro-features-list li:last-child {
    border-bottom: none;
}

.pro-features-list li .icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    font-size: 1.125rem;
}

.pro-features-list li .content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.pro-features-list li .content p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.pro-about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.pro-about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* CTA Section */
.pro-cta {
    padding: 6rem 0;
    background: var(--gradient-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.pro-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(0, 102, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(0, 212, 255, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.pro-cta .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.pro-cta h2 {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.pro-cta p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

/* Footer */
.pro-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
}

.pro-footer .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pro-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.pro-footer-brand img {
    height: 60px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.pro-footer-brand img:hover {
    transform: scale(1.05);
}

.pro-footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.pro-footer-social {
    display: flex;
    gap: 1rem;
}

.pro-footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.pro-footer-social a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.pro-footer-section h3 {
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.pro-footer-section ul {
    list-style: none;
}

.pro-footer-section ul li {
    margin-bottom: 0.75rem;
}

.pro-footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s;
}

.pro-footer-section ul li a:hover {
    color: white;
}

.pro-footer-section ul li i {
    width: 20px;
    margin-right: 0.75rem;
    color: var(--secondary);
}

.pro-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Contact Page Styles */
.pro-contact-hero {
    background: var(--gradient-dark);
    color: white;
    padding: 6rem 0 4rem;
    margin-top: 80px;
    text-align: center;
}

.pro-contact-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.pro-contact-hero p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.pro-contact-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.pro-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pro-contact-info {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    height: fit-content;
}

.pro-contact-info h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.pro-contact-item {
    display: flex;
    align-items: start;
    gap: 1.25rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
}

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

.pro-contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.pro-contact-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.pro-contact-content a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.pro-contact-content a:hover {
    color: var(--primary-dark);
}

.pro-contact-form {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.pro-contact-form h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

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

.pro-form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.pro-form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 0.9375rem;
    font-family: inherit;
    transition: all 0.3s;
    background: var(--bg-white);
    color: var(--text-primary);
}

.pro-form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

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

.pro-form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: none;
}

.pro-form-message.success {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.pro-form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.pro-map-wrapper {
    padding: 0;
    margin: 0;
}

.pro-map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

/* Responsive */
@media (max-width: 1024px) {
    .pro-hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .pro-hero-visual {
        justify-content: flex-start;
    }
    
    .pro-about .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .pro-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .pro-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .pro-logo {
        min-width: 110px;
    }
    
    .pro-logo img {
        height: 105px;
        top: -34px;
    }
    
    .pro-footer-brand img {
        height: 50px;
    }
}

@media (max-width: 768px) {
    .pro-hero-grid {
        gap: 2rem;
    }
    
    .pro-hero-visual {
        justify-content: center;
    }
    
    .ai-screen {
        max-width: 100%;
    }
    
    .ai-screen-body {
        font-size: 0.85rem;
    }
    
    .pro-hero h1 {
        font-size: 2.5rem;
    }
    
    .pro-hero p {
        font-size: 1.125rem;
    }
    
    .pro-section-header h2 {
        font-size: 2rem;
    }
    
    .pro-services-grid {
        grid-template-columns: 1fr;
    }
    
    .pro-nav {
        display: none;
    }
    
    .pro-footer-grid {
        grid-template-columns: 1fr;
    }
    
    .pro-hero-actions {
        flex-direction: column;
    }
    
    .pro-hero-actions .pro-btn {
        width: 100%;
        text-align: center;
    }
    
    .pro-logo {
        min-width: 100px;
    }
    
    .pro-logo img {
        height: 90px;
        top: -28px;
    }
    
    .pro-footer-brand img {
        height: 45px;
    }
}

/* Floating Calendly meeting button */
.pro-meet-float {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    z-index: 9999 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    padding: 1rem 1.5rem !important;
    border-radius: 50px !important;
    background: linear-gradient(135deg, #0066ff 0%, #00a3ff 100%) !important;
    color: #fff !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4), 0 0 0 0 rgba(0, 102, 255, 0.7) !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
    animation: pro-meet-pop 3s ease-in-out infinite !important;
    white-space: nowrap !important;
    border: none !important;
    outline: none !important;
}

.pro-meet-float i {
    font-size: 1.2rem !important;
    animation: pro-meet-icon-bounce 2s ease-in-out infinite !important;
}

.pro-meet-float:hover {
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 0 12px 35px rgba(0, 102, 255, 0.5), 0 0 0 8px rgba(0, 102, 255, 0.1) !important;
    background: linear-gradient(135deg, #0052cc 0%, #0088cc 100%) !important;
}

.pro-meet-float:active {
    transform: translateY(-2px) scale(1.02) !important;
}

@keyframes pro-meet-pop {
    0%, 100% { 
        transform: translateY(0) scale(1); 
        box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4), 0 0 0 0 rgba(0, 102, 255, 0.7);
    }
    50% { 
        transform: translateY(-8px) scale(1.03); 
        box-shadow: 0 15px 40px rgba(0, 102, 255, 0.5), 0 0 0 4px rgba(0, 102, 255, 0.3);
    }
}

@keyframes pro-meet-icon-bounce {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    25% { 
        transform: translateY(-3px) rotate(-5deg); 
    }
    75% { 
        transform: translateY(-3px) rotate(5deg); 
    }
}

@media (max-width: 768px) {
    .pro-meet-float {
        bottom: 20px !important;
        right: 20px !important;
        padding: 0.85rem 1.2rem !important;
        font-size: 0.85rem !important;
        gap: 0.6rem !important;
    }

    .pro-meet-float span {
        display: inline !important;
    }
    
    .pro-meet-float i {
        font-size: 1.1rem !important;
    }
}

@media (max-width: 480px) {
    .pro-meet-float {
        padding: 0.75rem 1rem !important;
        font-size: 0.8rem !important;
    }
    
    .pro-meet-float span {
        display: none !important;
    }
    
    .pro-meet-float i {
        font-size: 1.3rem !important;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

