/* ===== RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0055FF;
    --primary-dark: #0044CC;
    --primary-light: #0077FF;
    --text-dark: #1a1a2e;
    --text-gray: #6b7280;
    --text-light: #4a5568;
    --bg-light: #f7faff;
    --bg-white: #ffffff;
    --border-light: rgba(0,85,255,0.1);
    --border-medium: rgba(0,85,255,0.15);
    --shadow-sm: 0 8px 30px rgba(0,85,255,0.3);
    --shadow-md: 0 15px 50px rgba(0,85,255,0.15);
    --shadow-lg: 0 20px 60px rgba(0,85,255,0.15);
    --shadow-xl: 0 25px 80px rgba(0,85,255,0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 40px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 2px;
}

.logo-1 {
    font-family: 'Unbounded', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
}

.logo-text {
    font-family: 'Unbounded', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-link {
    padding: 10px 20px;
    border-radius: 25px;
    background: transparent;
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: #E7EFFF;
}

.nav-link.active {
    background: var(--primary);
    color: #fff;
}

.nav-link.active:hover {
    background: var(--primary-dark);
}

/* ===== MOBILE MENU ===== */
.menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border-medium);
    border-radius: 10px;
    cursor: pointer;
    padding: 10px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.menu-toggle:hover {
    border-color: var(--primary);
}

.menu-toggle svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-dark);
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 200;
    flex-direction: column;
    padding: 16px 24px 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-top: 1px solid var(--border-light);
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.2s ease;
}

.mobile-nav-links a:last-child {
    border-bottom: none;
}

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

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 999;
}

.mobile-nav-overlay.active {
    display: block;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 80px;
    background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg-1 {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,85,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-bg-2 {
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,85,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0,85,255,0.1);
    border-radius: 30px;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease forwards;
}

.hero-badge span {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.hero-title {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease 0.1s forwards;
    opacity: 0;
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.6s ease 0.2s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.3s forwards;
    opacity: 0;
}

/* ===== BUTTONS ===== */
.btn-primary {
    padding: 16px 40px;
    background: linear-gradient(135deg, #0055FF 0%, #0044CC 100%);
    border: none;
    border-radius: 30px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,85,255,0.4);
}

.btn-secondary {
    padding: 16px 40px;
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: 30px;
    color: var(--primary);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-secondary:hover {
    background: #E7EFFF;
}

.btn-white {
    display: inline-block;
    padding: 18px 50px;
    background: #fff;
    border-radius: 30px;
    color: var(--primary);
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 40px;
}

.section-light {
    background: var(--bg-white);
}

.section-gray {
    background: linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 16px;
}

/* ===== SERVICE CARDS ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    text-decoration: none;
    color: inherit;
}

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

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #0055FF 0%, #0077FF 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 28px;
}

.service-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
}

/* ===== FEATURES ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    align-items: center;
}

.features-content h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 16px;
    margin-bottom: 24px;
}

.features-content p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(0,85,255,0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.feature-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.feature-description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ===== FEATURE BOXES ===== */
.features-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-box {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-box-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.feature-box-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.feature-box-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-gray);
}

/* ===== EXAMPLES SECTION ===== */
.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.example-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

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

.example-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.example-content {
    padding: 24px;
}

.example-category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0,85,255,0.1);
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.example-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.example-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.example-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.example-duration {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--text-gray);
}

.example-link {
    color: var(--primary);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

/* ===== PRICING ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    align-items: center;
}

.pricing-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 32px;
    border: 1px solid var(--border-medium);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.pricing-card.popular {
    background: linear-gradient(135deg, #0055FF 0%, #0044CC 100%);
    border: none;
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.pricing-card.popular:hover {
    transform: scale(1.07);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFD700;
    color: var(--text-dark);
    padding: 6px 20px;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-name {
    font-family: 'Unbounded', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.pricing-card:not(.popular) .pricing-name {
    color: var(--text-dark);
}

.pricing-card.popular .pricing-name {
    color: #fff;
}

.pricing-price {
    margin-bottom: 24px;
}

.pricing-amount {
    font-family: 'Unbounded', sans-serif;
    font-size: 48px;
    font-weight: 700;
}

.pricing-card:not(.popular) .pricing-amount {
    color: var(--primary);
}

.pricing-card.popular .pricing-amount {
    color: #fff;
}

.pricing-period {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    margin-left: 8px;
}

.pricing-card:not(.popular) .pricing-period {
    color: var(--text-gray);
}

.pricing-card.popular .pricing-period {
    color: rgba(255,255,255,0.8);
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.pricing-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.pricing-card:not(.popular) .pricing-check {
    background: rgba(0,85,255,0.1);
    color: var(--primary);
}

.pricing-card.popular .pricing-check {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.pricing-feature span:last-child {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
}

.pricing-card:not(.popular) .pricing-feature span:last-child {
    color: var(--text-light);
}

.pricing-card.popular .pricing-feature span:last-child {
    color: rgba(255,255,255,0.95);
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card:not(.popular) .pricing-btn {
    background: linear-gradient(135deg, #0055FF 0%, #0044CC 100%);
    color: #fff;
}

.pricing-card.popular .pricing-btn {
    background: #fff;
    color: var(--primary);
}

.pricing-btn:hover {
    transform: translateY(-2px);
}

/* ===== CONTACT FORM ===== */
.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: #fff;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 10px 60px rgba(0,85,255,0.1);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    background: #fff;
}

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

.form-input::placeholder,
.form-textarea::placeholder {
    color: #9ca3af;
}

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

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 20px;
    padding-right: 48px;
}

.form-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #0055FF 0%, #0044CC 100%);
    border: none;
    border-radius: 14px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,85,255,0.4);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #0055FF 0%, #0033AA 100%);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

.cta-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 40px;
}

/* ===== CLIENTS PAGE ===== */
.filter-tabs {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.filter-tab {
    padding: 12px 24px;
    border: 2px solid var(--border-medium);
    border-radius: 30px;
    background: transparent;
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.client-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

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

.client-card.hidden {
    display: none;
}

.client-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    position: relative;
}

.client-type-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    background: rgba(255,255,255,0.9);
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
}

.client-content {
    padding: 24px;
}

.client-category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0,85,255,0.1);
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.client-name {
    font-family: 'Unbounded', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.client-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.client-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.client-duration {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--text-gray);
}

.client-link {
    color: var(--primary);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ===== FOOTER ===== */
.footer {
    background: #0a0a1a;
    padding: 80px 40px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 20px;
}

.footer-logo .logo-1,
.footer-logo .logo-text {
    color: #fff;
}

.footer-description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

.footer-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-link {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #fff;
}

.footer-email {
    color: #0077FF;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-copyright {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.4);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav {
        padding: 16px 20px;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .section {
        padding: 60px 20px;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .features-grid {
        gap: 40px;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .contact-form {
        padding: 32px 24px;
    }

    .filter-tabs {
        gap: 8px;
    }

    .filter-tab {
        padding: 10px 18px;
        font-size: 13px;
    }

    .footer {
        padding: 60px 20px 30px;
    }
}

/* ===== CONTACT PAGE STYLES ===== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    padding: 48px;
    background: linear-gradient(135deg, #0055FF 0%, #0033AA 100%);
    border-radius: 24px;
    color: #fff;
}

.contact-info-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-info-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-item-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-item-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 4px;
}

.contact-item-value {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.contact-item-value a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.contact-item-value a:hover {
    opacity: 0.8;
}

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

.social-link {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.contact-form-wrapper {
    background: #fff;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 10px 60px rgba(0,85,255,0.1);
}

.contact-form-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-form-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 32px;
}

.work-hours {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.work-hours-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.work-hours-item {
    display: flex;
    justify-content: space-between;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #fff;
    margin-bottom: 8px;
}

.work-hours-item span:last-child {
    color: rgba(255,255,255,0.8);
}

/* Contact Page Responsive */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        order: 2;
    }

    .contact-form-wrapper {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact-info,
    .contact-form-wrapper {
        padding: 32px 24px;
    }
}
