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

/* Import shared variables */
@import url('./variables.css');

/* ===== PAGE BACKGROUND ===== */

body {
    background: var(--primary-color);
    min-height: 100vh;
}

#app {
    background: var(--primary-color);
}

/* ===== CONTACT HERO SECTION ===== */

.contact-hero-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1) 25%, transparent 25%), 
                linear-gradient(-45deg, rgba(37, 99, 235, 0.1) 25%, transparent 25%), 
                linear-gradient(45deg, transparent 75%, rgba(37, 99, 235, 0.1) 75%), 
                linear-gradient(-45deg, transparent 75%, rgba(37, 99, 235, 0.1) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    opacity: 0.3;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.contact-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Override container centering for contact page */
.contact-info-section .container {
    max-width: 100%;
    margin: 0;
    padding: 0 2rem;
}

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

/* ===== NEW CONTACT METHOD STYLES ===== */

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 100%;
    margin: 0;
    width: 100%;
}

/* Specific row layouts */
.contact-info .contact-method:nth-child(1),
.contact-info .contact-method:nth-child(2),
.contact-info .contact-method:nth-child(3) {
    grid-column: span 1;
}

.contact-info .contact-method:nth-child(4),
.contact-info .contact-method:nth-child(5) {
    grid-column: span 1;
}

.contact-info .contact-method:nth-child(6) {
    grid-column: span 3;
    max-width: none;
    margin: 0;
}

/* Contact Method Cards - Clean Minimal Design */
.contact-method {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-height: 120px;
    justify-content: center;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.contact-method .contact-icon {
    display: none;
}

.contact-method .contact-details {
    text-align: center;
    width: 100%;
}

.contact-method .contact-details h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

.contact-method .contact-details p {
    font-size: 1rem;
    color: var(--text-color-secondary);
    margin-bottom: 0;
    line-height: 1.5;
    text-align: center;
    word-wrap: break-word;
}

/* Contact Action Buttons - Subtle Design */
.call-btn,
.whatsapp-btn,
.email-btn,
.map-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: transparent;
    color: var(--accent-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 400;
    transition: all 0.3s ease;
    border: 1px solid var(--accent-color);
    cursor: pointer;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.call-btn:hover,
.whatsapp-btn:hover,
.email-btn:hover,
.map-btn:hover {
    background: var(--accent-color);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 400;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.social-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Specific social media button colors */
.facebook-btn:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.instagram-btn:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #bc1888;
}

.tiktok-btn:hover {
    background: #000000;
    border-color: #000000;
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 1024px) {
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        margin: 0;
        width: 100%;
    }
    
    .contact-info .contact-method:nth-child(1),
    .contact-info .contact-method:nth-child(2),
    .contact-info .contact-method:nth-child(3) {
        grid-column: span 1;
    }
    
    .contact-info .contact-method:nth-child(4),
    .contact-info .contact-method:nth-child(5) {
        grid-column: span 1;
    }
    
    .contact-info .contact-method:nth-child(6) {
        grid-column: span 2;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
        margin: 0;
        width: 100%;
    }
    
    .contact-info .contact-method:nth-child(1),
    .contact-info .contact-method:nth-child(2),
    .contact-info .contact-method:nth-child(3),
    .contact-info .contact-method:nth-child(4),
    .contact-info .contact-method:nth-child(5),
    .contact-info .contact-method:nth-child(6) {
        grid-column: span 1;
        max-width: none;
        margin: 0;
    }
    
    .contact-method {
        padding: 1.2rem;
        min-height: 100px;
    }
    
    .contact-method .contact-icon {
        display: none;
    }
    
    .contact-method .contact-details h3 {
        font-size: 1.1rem;
    }
    
    .contact-method .contact-details p {
        font-size: 0.9rem;
    }
}

/* ===== CONTACT CARD STYLES WITH BRAND COLORS ===== */

.contact-card {
    background: var(--secondary-color);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--elevation-2);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--elevation-4);
    background: var(--primary-color);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.contact-card:hover::before {
    opacity: 1;
}

/* Phone card - Black theme */
.phone-card .contact-icon svg {
    color: #1f2937;
}

.phone-card:hover {
    border-color: #1f2937;
    box-shadow: 0 8px 25px rgba(31, 41, 55, 0.3);
}

.phone-card:hover .contact-icon svg {
    color: #111827;
}

/* WhatsApp card - Green theme */
.whatsapp-card .contact-icon svg {
    color: #25D366;
}

.whatsapp-card:hover {
    border-color: #25D366;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp-card:hover .contact-icon svg {
    color: #128C7E;
}

/* Email card - Red theme */
.email-card .contact-icon svg {
    color: #dc2626;
}

.email-card:hover {
    border-color: #dc2626;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.email-card:hover .contact-icon svg {
    color: #b91c1c;
}

.contact-action {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-color);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.contact-card:hover .contact-action {
    opacity: 1;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.contact-icon svg {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.5rem auto;
    display: block;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-btn {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 180px;
    text-align: center;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: white;
    text-decoration: none;
}

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

.contact-btn:active {
    transform: translateY(-1px);
    box-shadow: var(--elevation-3);
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-hero-content {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1rem;
    }
    
    .contact-card {
        padding: 1.5rem 1rem;
    }
    
    .contact-hero-content {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

/* ===== RESPONSIVE DESIGN ===== */

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all var(--transition-speed) ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

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

.submit-button {
    width: 100%;
    font-size: 1.1rem;
    padding: 15px;
}

/* ===== CONTACT INFO STYLES ===== */

.contact-info {
    padding: 60px 40px 40px 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info h3 {
    margin-bottom: 30px;
    color: var(--accent-color);
    font-size: 1.8rem;
    text-align: center;
}

.contact-method {
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--accent-color);
}

.contact-method h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.contact-method p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.contact-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-btn {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 12px;
    border-radius: 50%;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    text-align: center;
}

.contact-btn:hover {
    background: var(--accent-color);
    color: white;
    box-shadow: 0 0 15px var(--accent-color);
    transform: scale(1.05);
}

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

.whatsapp-btn {
    border-color: #25D366;
    color: #25D366;
}

.whatsapp-btn:hover {
    background: #25D366;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

.call-btn {
    border-color: #6B7280;
    color: #6B7280;
}

.call-btn:hover {
    background: #6B7280;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

.email-btn {
    border-color: #EA4335;
    color: #EA4335;
}

.email-btn:hover {
    background: #EA4335;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

/* Phone method specific styling for inline layout */
.contact-method.phone-method {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-method.phone-method h3 {
    margin-bottom: 0;
    margin-right: 10px;
}

.contact-method.phone-method p {
    margin-bottom: 0;
    margin-right: 10px;
}

.contact-method.phone-method .contact-buttons {
    margin-left: auto;
}

/* WhatsApp method specific styling for inline layout */
.contact-method.whatsapp-method {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-method.whatsapp-method h3 {
    margin-bottom: 0;
    margin-right: 10px;
}

.contact-method.whatsapp-method p {
    margin-bottom: 0;
    margin-right: 10px;
}

.contact-method.whatsapp-method .contact-buttons {
    margin-left: auto;
}

/* Email method specific styling for inline layout */
.contact-method.email-method {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-method.email-method h3 {
    margin-bottom: 0;
    margin-right: 10px;
}

.contact-method.email-method p {
    margin-bottom: 0;
    margin-right: 10px;
}

.contact-method.email-method .contact-buttons {
    margin-left: auto;
}

/* ===== MAP SECTION STYLES ===== */

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0D131B 100%);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://placehold.co/800x400/1E2A38/FFD700?text=Map+Location') center/cover;
    opacity: 0.3;
}

.map-content {
    position: relative;
    z-index: 10;
}

.map-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.map-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ===== DIVIDER ===== */

.divider {
    width: 80%;
    max-width: 600px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    margin: 60px auto;
    border-radius: 1px;
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 768px) {
    .vehicle-inventory-title {
        padding-top: var(--spacing-2xl);
        padding-bottom: var(--spacing-xs);
        margin-bottom: var(--spacing-xs);
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .contact-section {
        padding: 60px 0;
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .map-section {
        padding: 60px 0;
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .contact-info {
        border-radius: 30px;
        padding: 50px 30px 30px 30px;
    }
}

@media (max-width: 480px) {
    .vehicle-inventory-title {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .contact-section {
        padding: 40px 0;
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .map-section {
        padding: 40px 0;
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .contact-form,
    .contact-info {
        padding: 20px;
    }
    
    .hero-text {
        font-size: 0.9rem;
    }
    
    .contact-info {
        border-radius: 20px;
        padding: 40px 20px 20px 20px;
    }
}

@media (max-width: 360px) {
    .vehicle-inventory-title {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .contact-section {
        padding: 30px 0;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .map-section {
        padding: 30px 0;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .contact-form,
    .contact-info {
        padding: 15px;
    }
    
    .hero-text {
        font-size: 0.85rem;
    }
    
    .contact-info {
        border-radius: 15px;
        padding: 30px 15px 15px 15px;
    }
}

/* ===== FORM MESSAGES ===== */

.form-message {
    margin-top: 15px;
    padding: 10px 15px;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    animation: slideIn 0.3s ease;
    font-size: 0.85rem;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4CAF50;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #f44336;
}

/* ===== LOADING STATES ===== */

.loading-spinner-small {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.spinner-small {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-left: 2px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* ===== NO CONTACT INFO STATES ===== */

.no-contact-info {
    text-align: center;
    padding: 40px;
}

.no-contact-info-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.7;
}

.no-contact-info-message {
    color: #E0E0E0;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.no-contact-info-subtitle {
    color: #888;
    font-size: 0.9rem;
    margin-top: 10px;
}

.setup-instructions {
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-align: left;
}

.setup-instructions h4 {
    color: var(--accent-color);
    margin-bottom: 15px;
}

.setup-instructions p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ===== ERROR MESSAGES ===== */

.error-message {
    text-align: center;
    padding: 20px;
    color: #2563eb;
}

.error-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
    opacity: 0.7;
}

.error-text {
    font-size: 0.9rem;
}

/* ===== ANIMATIONS ===== */

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

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

/* ===== PROCESS STEPS SECTION ===== */

.process-steps-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.05));
}

.process-steps-section .container {
    max-width: 100%;
    margin: 0;
    padding: 0 2rem;
}

.process-subtitle {
    text-align: center;
    color: var(--text-color-secondary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.process-steps-container {
    position: relative;
    max-width: 100%;
    margin: 0;
}

.process-steps-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0;
    background: none;
    border: none;
    height: auto;
    overflow: visible;
    border-radius: 0;
}

.process-step-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    opacity: 1;
    transform: none;
    box-shadow: none;
}

.process-step-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.process-step-number-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), #3b82f6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}
.process-step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.process-step-description {
    font-size: 1rem;
    color: var(--text-color-secondary);
    line-height: 1.5;
    opacity: 0.9;
}
}

/* ===== NAVIGATION DOTS - HIDDEN FOR GRID LAYOUT ===== */

.process-dots {
    display: none;
}
/* ===== RESPONSIVE DESIGN FOR PROCESS STEPS ===== */

@media (max-width: 768px) {
    .process-steps-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-step-card {
        padding: 1.5rem;
        min-height: 180px;
    }
    
    .process-step-number-circle {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .process-step-title {
        font-size: 1.2rem;
    }
    
    .process-step-description {
        font-size: 0.95rem;
    }
}

/* ===== NAVIGATION ARROWS - HIDDEN FOR GRID LAYOUT ===== */

.process-nav-btn {
    display: none;
}
/* ===== LOADING SPINNER FOR PROCESS STEPS ===== */

.process-steps-wrapper .loading-spinner {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: var(--text-color-secondary);
}

.process-steps-wrapper .loading-spinner p {
    margin-top: 1rem;
    font-size: 1rem;
    opacity: 0.8;
}

/* ===== END OF PROCESS STEPS STYLES ===== */

/* ===== END OF PROCESS STEPS STYLES ===== */
