/* ===== CSS Variables ===== */
:root {
    --primary: #1E3A8A;
    --primary-dark: #172E6E;
    --primary-light: #3B5CB8;
    --secondary: #0F172A;
    --accent: #3B82F6;
    --accent-light: #60A5FA;
    --white: #FFFFFF;
    --light: #F8FAFC;
    --light-gray: #E2E8F0;
    --gray: #94A3B8;
    --dark-gray: #475569;
    --text: #1E293B;
    --text-muted: #64748B;
    --success: #10B981;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 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);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --transition: all 0.3s ease;
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--white);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    font-family: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--light-gray);
    z-index: 1000;
    padding: 15px 0;
}

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

.nav-logo img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 10px;
}

.nav-link {
    padding: 10px 20px;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: var(--light);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 10px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== Container ===== */
.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 80px;
}

.page-container {
    padding-top: 100px;
}

/* ===== Hero Section ===== */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

/* Coming Soon Badge */
.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 14px 35px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 35px;
    animation: pulse 2s ease-in-out infinite, fadeInUp 0.8s ease-out;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(30, 58, 138, 0.3);
}

.coming-soon-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    to { left: 100%; }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 10px 40px rgba(30, 58, 138, 0.3); }
    50% { box-shadow: 0 15px 50px rgba(30, 58, 138, 0.5); }
}

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

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.badge-text {
    position: relative;
    z-index: 1;
}

/* Hero Title */
.hero-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(42px, 8vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--secondary);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title span {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 50px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* ===== Services Section ===== */
.services-section {
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    width: 100%;
}

.services-label {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 25px;
    font-weight: 600;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.service-btn {
    position: relative;
    background: var(--white);
    border: 2px solid var(--light-gray);
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    overflow: hidden;
}

.service-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.3s;
}

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

.service-btn:hover::before {
    opacity: 0.05;
}

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

.service-icon {
    font-size: 36px;
    margin-bottom: 15px;
    display: block;
    position: relative;
    z-index: 1;
}

.service-name {
    font-weight: 600;
    font-size: 14px;
    position: relative;
    z-index: 1;
    line-height: 1.4;
    color: var(--text);
    transition: var(--transition);
}

.service-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary);
    color: var(--white);
    font-size: 9px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.service-tag.new {
    background: var(--success);
}

/* ===== Waitlist Form ===== */
.waitlist-section {
    animation: fadeInUp 0.8s ease-out 0.8s both;
    width: 100%;
    max-width: 700px;
}

.waitlist-form {
    display: flex;
    gap: 0;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-full);
    padding: 8px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.waitlist-form:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.1);
}

.form-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 16px 25px;
    font-size: 15px;
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    min-width: 0;
}

.form-input::placeholder {
    color: var(--gray);
}

.form-input:focus {
    outline: none;
}

.form-divider {
    width: 1px;
    background: var(--light-gray);
    margin: 12px 0;
}

.form-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    padding: 16px 30px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    transition: var(--transition);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.form-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
}

.form-btn .btn-icon {
    width: 18px;
    height: 18px;
    transition: var(--transition);
}

.form-btn:hover .btn-icon {
    transform: translateX(3px);
}

.form-btn .btn-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.form-btn.loading .btn-text,
.form-btn.loading .btn-icon {
    display: none;
}

.form-btn.loading .btn-loader {
    display: block;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.waitlist-note {
    margin-top: 18px;
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.waitlist-note svg {
    color: var(--success);
}

/* Success Message */
.success-message {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 30px;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid var(--success);
    border-radius: var(--radius-full);
    color: var(--success);
    font-weight: 600;
}

.success-message.show {
    display: flex;
    animation: fadeInUp 0.5s ease-out;
}

/* ===== Stats ===== */
.stats {
    display: flex;
    gap: 60px;
    margin-top: 60px;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Rajdhani', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--primary);
}

.stat-number::after {
    content: '+';
}

.stat:nth-child(2) .stat-number::after,
.stat:nth-child(3) .stat-number::after {
    content: '';
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 5px;
}

/* ===== Footer ===== */
.footer {
    text-align: center;
    padding: 30px 20px;
    color: var(--text-muted);
    font-size: 14px;
    border-top: 1px solid var(--light-gray);
    margin-top: auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.footer-links a {
    color: var(--primary);
    font-weight: 500;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

.powered-by {
    margin-top: 15px;
    font-size: 12px;
    color: var(--gray);
}

.powered-by a {
    color: var(--primary);
    font-weight: 500;
    transition: var(--transition);
}

.powered-by a:hover {
    color: var(--accent);
}

/* ===== Chat Widget ===== */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chat-toggle {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(30, 58, 138, 0.4);
    transition: var(--transition);
    position: relative;
}

.chat-toggle:hover {
    transform: scale(1.1);
}

.chat-toggle svg {
    width: 28px;
    height: 28px;
    color: var(--white);
    transition: var(--transition);
}

.chat-toggle.active svg {
    transform: rotate(90deg);
}

.chat-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    background: #EF4444;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border: 3px solid var(--white);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.chat-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    max-height: 520px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 80px rgba(0,0,0,0.2);
    overflow: hidden;
    transform: scale(0.8) translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--light-gray);
}

.chat-box.active {
    transform: scale(1) translateY(0);
    opacity: 1;
    visibility: visible;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
}

.chat-avatar {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    position: relative;
    flex-shrink: 0;
}

.chat-avatar::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 14px;
    height: 14px;
    background: var(--success);
    border-radius: 50%;
    border: 3px solid var(--primary);
}

.chat-header-info {
    flex: 1;
}

.chat-header-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
}

.chat-header-info p {
    font-size: 12px;
    opacity: 0.9;
}

.chat-close {
    background: rgba(255,255,255,0.2);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.chat-close:hover {
    background: rgba(255,255,255,0.3);
}

.chat-close svg {
    width: 18px;
    height: 18px;
    color: var(--white);
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 280px;
    background: var(--light);
}

.message {
    max-width: 85%;
    padding: 14px 18px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.5;
    animation: messageIn 0.3s ease-out;
}

@keyframes messageIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.message.bot {
    background: var(--white);
    border: 1px solid var(--light-gray);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    color: var(--text);
}

.message.user {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    color: var(--white);
}

.message-time {
    font-size: 10px;
    opacity: 0.6;
    margin-top: 6px;
}

.typing-indicator {
    display: flex;
    gap: 5px;
    padding: 14px 18px;
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 18px;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--gray);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(-5px); opacity: 1; }
}

.quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 20px 15px;
    background: var(--light);
}

.quick-reply {
    background: var(--white);
    border: 1px solid var(--light-gray);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text);
    font-family: 'Outfit', sans-serif;
}

.quick-reply:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.chat-input-area {
    padding: 15px 20px;
    background: var(--white);
    border-top: 1px solid var(--light-gray);
    display: flex;
    gap: 10px;
    align-items: center;
}

.chat-input {
    flex: 1;
    background: var(--light);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-full);
    padding: 12px 20px;
    font-size: 14px;
    color: var(--text);
    font-family: 'Outfit', sans-serif;
}

.chat-input:focus {
    outline: none;
    border-color: var(--primary);
}

.chat-send {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.chat-send:hover {
    transform: scale(1.1);
}

.chat-send svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

/* ===== Page Header ===== */
.page-header {
    text-align: center;
    padding: 40px 20px 60px;
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
}

.page-title span {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 18px;
    color: var(--text-muted);
}

/* ===== About Page ===== */
.about-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.about-section {
    margin-bottom: 60px;
}

.about-section.full-width {
    margin-bottom: 80px;
}

.about-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    transition: var(--transition);
}

.about-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.about-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.about-card h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.about-card p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 16px;
}

.section-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: var(--secondary);
    text-align: center;
    margin-bottom: 40px;
}

.section-title span {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Services Detail Grid */
.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-detail-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 35px;
    transition: var(--transition);
}

.service-detail-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.service-detail-icon {
    font-size: 45px;
    display: block;
    margin-bottom: 20px;
}

.service-detail-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-detail-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* About CTA */
.about-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    color: var(--white);
}

.about-cta h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    margin-bottom: 10px;
}

.about-cta p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--primary);
    padding: 15px 35px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* ===== Contact Page ===== */
.contact-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

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

.contact-info h2,
.contact-form-section h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.contact-intro {
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: var(--radius);
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.contact-card-icon {
    font-size: 30px;
    flex-shrink: 0;
}

.contact-card-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 5px;
}

.contact-card-content p {
    font-size: 15px;
    color: var(--text);
}

.contact-card-content a {
    color: var(--primary);
    transition: var(--transition);
}

.contact-card-content a:hover {
    color: var(--accent);
}

.contact-note {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 5px;
}

/* Social Section */
.social-section {
    margin-top: 40px;
}

.social-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--light);
    border: 2px solid var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Contact Form */
.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.1);
}

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

.contact-submit-btn {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    padding: 16px 35px;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
}

.contact-submit-btn .btn-icon {
    width: 20px;
    height: 20px;
}

.contact-submit-btn .btn-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.contact-submit-btn.loading .btn-text,
.contact-submit-btn.loading .btn-icon {
    display: none;
}

.contact-submit-btn.loading .btn-loader {
    display: block;
}

.contact-success-message {
    display: none;
    grid-column: span 2;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 30px;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid var(--success);
    border-radius: var(--radius);
    color: var(--success);
    font-weight: 600;
}

.contact-success-message.show {
    display: flex;
    animation: fadeInUp 0.5s ease-out;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-detail-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 5px;
        border-bottom: 1px solid var(--light-gray);
        box-shadow: var(--shadow-lg);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

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

    .nav-link {
        padding: 15px 20px;
        width: 100%;
        text-align: center;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        padding: 40px 20px;
    }

    .waitlist-form {
        flex-direction: column;
        border-radius: var(--radius-lg);
        padding: 20px;
        gap: 12px;
    }

    .form-input {
        padding: 16px 20px;
        text-align: center;
        border: 1px solid var(--light-gray);
        border-radius: var(--radius);
    }

    .form-divider {
        display: none;
    }

    .form-btn {
        width: 100%;
        justify-content: center;
        padding: 16px;
        border-radius: var(--radius);
    }

    .stats {
        gap: 30px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-number {
        font-size: 32px;
    }

    .chat-box {
        width: calc(100vw - 40px);
        right: -10px;
        bottom: 75px;
        max-height: 450px;
    }

    .chat-widget {
        bottom: 20px;
        right: 20px;
    }

    .chat-toggle {
        width: 60px;
        height: 60px;
    }

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

    .about-card {
        padding: 30px 25px;
    }

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

    .form-group.full-width,
    .contact-submit-btn,
    .contact-success-message {
        grid-column: span 1;
    }
}

@media (max-width: 500px) {
    .coming-soon-badge {
        padding: 12px 25px;
        font-size: 11px;
        letter-spacing: 2px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .service-btn {
        padding: 25px 15px;
    }

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

    .service-name {
        font-size: 12px;
    }

    .service-tag {
        font-size: 8px;
        padding: 3px 8px;
        top: 8px;
        right: 8px;
    }

    .stats {
        gap: 25px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }

    .success-message {
        flex-direction: column;
        text-align: center;
        border-radius: var(--radius-lg);
        padding: 25px 20px;
    }

    .page-header {
        padding: 30px 20px 40px;
    }

    .about-cta {
        padding: 40px 25px;
    }
}

/* ===== reCAPTCHA Badge Hide ===== */
.grecaptcha-badge {
    visibility: hidden;
}
