
/* Block 1 */
.hero-banner {
    position: relative;
    overflow: hidden;
    color: white;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.9) 0%, rgba(49, 27, 146, 0.8) 50%, rgba(16, 185, 129, 0.7) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.hero-text {
    padding-right: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary-hero {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    border: none;
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.6);
    color: white;
}

.btn-secondary-hero {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #10b981;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

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

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1f2937;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    color: #10b981;
    font-size: 1.1rem;
}

.card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 30%;
    left: -15%;
    animation-delay: 1s;
}

.card-3 {
    top: 50%;
    right: -20%;
    animation-delay: 2s;
}

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

@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-text {
        padding-right: 1rem;
    }
}

@media (max-width: 992px) {
    .hero-content {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-visual {
        margin-top: 3rem;
    }
    
    .floating-card {
        position: static;
        margin: 10px;
        display: inline-flex;
    }
    
    .card-1, .card-2, .card-3 {
        position: static;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary-hero, .btn-secondary-hero {
        text-align: center;
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 2rem;
        justify-content: center;
    }
    
    .stat-item {
        align-items: center;
        text-align: center;
    }
    
    .floating-card {
        font-size: 0.8rem;
        padding: 10px 15px;
    }
}

/* Block 2 */
.quantum-showcase {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3a 50%, #2d1b69 100%);
    padding: 120px 0;
    overflow: hidden;
    position: relative;
}

.quantum-showcase::before {
    content: '';
    background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.15) 0%, transparent 50%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.quantum-showcase .container {
    position: relative;
    z-index: 2;
}

.showcase-header {
    text-align: center;
    margin-bottom: 80px;
}

.showcase-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #ff6ec7, #7c3aed, #06b6d4);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.showcase-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.quantum-visual {
    position: relative;
    margin-bottom: 60px;
}

.quantum-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    filter: brightness(1.1) contrast(1.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.energy-pulse {
    position: absolute;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, #ff6ec7 0%, transparent 70%);
    border-radius: 50%;
    animation: quantumPulse 3s infinite;
}

.pulse-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.pulse-2 {
    top: 60%;
    right: 20%;
    animation-delay: 1s;
    background: radial-gradient(circle, #7c3aed 0%, transparent 70%);
}

.pulse-3 {
    bottom: 25%;
    left: 70%;
    animation-delay: 2s;
    background: radial-gradient(circle, #06b6d4 0%, transparent 70%);
}

@keyframes quantumPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(3);
        opacity: 0;
    }
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 110, 199, 0.2);
    border-color: rgba(255, 110, 199, 0.3);
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6ec7, #7c3aed);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.feature-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.quantum-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 80px;
    padding: 60px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.metric-visual {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #06b6d4, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.metric-icon {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

.metric-data {
    display: flex;
    flex-direction: column;
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

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

@media (max-width: 992px) {
    .showcase-title {
        font-size: 2.8rem;
    }
    
    .quantum-visual {
        margin-bottom: 50px;
    }
    
    .quantum-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .quantum-showcase {
        padding: 80px 0;
    }
    
    .showcase-title {
        font-size: 2.2rem;
    }
    
    .showcase-subtitle {
        font-size: 1.1rem;
    }
    
    .feature-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .quantum-metrics {
        padding: 40px 20px;
        gap: 30px;
    }
    
    .metric-item {
        justify-content: center;
        text-align: center;
    }
}

/* Block 3 */
.neural-network-hub {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    overflow: hidden;
}

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

.section-badge {
    display: inline-block;
    background: linear-gradient(45deg, #00d4ff, #7b68ee);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #7b68ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    line-height: 1.2;
}

.section-description {
    font-size: 1.2rem;
    color: #b8b8d1;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.neural-grid {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.neural-node {
    position: relative;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(123, 104, 238, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.primary-node {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #7b68ee, #00d4ff);
    z-index: 10;
}

.secondary-node {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, rgba(123, 104, 238, 0.8), rgba(0, 212, 255, 0.8));
    animation: float 3s ease-in-out infinite;
}

.node-1 { top: 50px; left: 100px; animation-delay: 0s; }
.node-2 { top: 50px; right: 100px; animation-delay: 0.5s; }
.node-3 { bottom: 50px; left: 100px; animation-delay: 1s; }
.node-4 { bottom: 50px; right: 100px; animation-delay: 1.5s; }

.node-image {
    width: 60%;
    height: 60%;
    object-fit: contain;
    filter: brightness(1.2);
}

.node-pulse {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(123, 104, 238, 0.6);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.neural-connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, rgba(123, 104, 238, 0.8), rgba(0, 212, 255, 0.8));
    border-radius: 2px;
    z-index: 5;
}

.connection-1 {
    width: 140px;
    top: 120px;
    left: 160px;
    transform: rotate(-25deg);
    animation: glow 2s ease-in-out infinite alternate;
}

.connection-2 {
    width: 140px;
    top: 120px;
    right: 160px;
    transform: rotate(25deg);
    animation: glow 2s ease-in-out infinite alternate 0.5s;
}

.connection-3 {
    width: 140px;
    bottom: 120px;
    left: 160px;
    transform: rotate(25deg);
    animation: glow 2s ease-in-out infinite alternate 1s;
}

.connection-4 {
    width: 140px;
    bottom: 120px;
    right: 160px;
    transform: rotate(-25deg);
    animation: glow 2s ease-in-out infinite alternate 1.5s;
}

.capabilities-list {
    padding-left: 40px;
}

.capability-item {
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capability-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(123, 104, 238, 0.2);
}

.capability-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.capability-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    filter: brightness(1.2);
}

.capability-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.capability-text {
    color: #b8b8d1;
    line-height: 1.6;
    margin: 0;
}

.intelligence-dashboard {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
}

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

.dashboard-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.sync-indicator {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(0, 212, 255, 0.2);
    border-radius: 25px;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.sync-image {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    animation: spin 2s linear infinite;
}

.sync-text {
    font-size: 14px;
    font-weight: 600;
    color: #00d4ff;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.metric-card:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.12);
}

.metric-chart {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    filter: hue-rotate(220deg) brightness(1.3);
}

.metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #00d4ff;
    margin-bottom: 5px;
}

.metric-name {
    font-size: 14px;
    color: #b8b8d1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.2); opacity: 0; }
}

@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(123, 104, 238, 0.8); }
    100% { box-shadow: 0 0 15px rgba(0, 212, 255, 0.8); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .neural-grid {
        min-height: 400px;
    }
    
    .capabilities-list {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .dashboard-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .neural-network-hub {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .neural-grid {
        min-height: 300px;
    }
    
    .primary-node {
        width: 100px;
        height: 100px;
    }
    
    .secondary-node {
        width: 60px;
        height: 60px;
    }
    
    .intelligence-dashboard {
        padding: 25px;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .metric-card {
        padding: 20px;
    }
}

/* Block 4 */
.order-form-section {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.form-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.2);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.header-visual {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.consultation-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    padding: 15px;
    background: linear-gradient(45deg, #4facfe 0%, #00f2fe 100%);
}

.icon-glow {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 172, 254, 0.3) 0%, transparent 70%);
    animation: pulse-glow 2s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.1); opacity: 1; }
}

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

.form-subtitle {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 0;
}

.consultation-form {
    margin-top: 30px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 35px;
}

.input-container {
    position: relative;
}

.input-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.form-input {
    flex: 1;
    padding: 18px 20px;
    border: 2px solid #e0e6ed;
    border-radius: 12px;
    font-size: 1rem;
    color: #2c3e50;
    background: white;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.form-input:focus + .input-highlight {
    width: 100%;
}

.input-highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
    border-radius: 0 0 12px 12px;
}

.form-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 35px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    border-radius: 16px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-badge {
    width: 24px;
    height: 24px;
}

.feature-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: #4a5568;
}

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

.submit-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    margin-bottom: 20px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.btn-icon {
    width: 22px;
    height: 22px;
}

.btn-energy {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.submit-btn:hover .btn-energy {
    width: 300px;
    height: 300px;
}

.privacy-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.privacy-icon {
    width: 18px;
    height: 18px;
}

.privacy-text {
    font-size: 0.85rem;
    color: #5a6c7d;
    font-weight: 500;
}

@media (max-width: 768px) {
    .order-form-section {
        padding: 60px 0 80px;
    }
    
    .form-wrapper {
        padding: 35px 25px;
        margin: 20px;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .form-subtitle {
        font-size: 1rem;
    }
    
    .form-features {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .feature-item {
        justify-content: center;
    }
    
    .submit-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .consultation-icon {
        width: 60px;
        height: 60px;
    }
    
    .icon-glow {
        width: 80px;
        height: 80px;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .input-wrapper {
        flex-direction: row;
        align-items: center;
    }
    
    .form-input {
        padding: 15px 16px;
    }
}
