
body {
    font-family: 'Vazirmatn', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}
h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Lalezar', cursive;
}
.text-primary-custom { color: #ff6b6b; }
.text-secondary-custom { color: #4ecdc4; }
.bg-primary-custom { background-color: #ff6b6b; color: white; }
.bg-secondary-custom { background-color: #4ecdc4; color: white; }

.btn-custom {
    background-color: #ffb86c;
    color: #fff;
    border-radius: 30px;
    font-weight: bold;
    border: none;
    transition: all 0.3s ease;
}
.btn-custom:hover {
    background-color: #ff9e3d;
    color: #fff;
    transform: translateY(-2px);
}

.card-custom {
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}
.card-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.hero-section {
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    padding: 80px 0;
    border-radius: 0 0 50px 50px;
    margin-bottom: 50px;
}

.hero-img-placeholder img {
    background: linear-gradient(45deg, #ffb86c, #ff6b6b);
    border-radius: 30px 100px 30px 100px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 15px 30px rgba(255, 107, 107, 0.2);
}

.footer {
    background-color: #2d3436;
    color: white;
    padding: 3rem 0 1rem 0;
    border-radius: 50px 50px 0 0;
}
.nav-link { font-weight: 500; }
.nav-link.active { color: #ff6b6b !important; font-weight: bold; }


.success-modal .modal-content {
            border: 0;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(52, 78, 92, 0.2);
        }

        .success-modal .modal-body {
            padding: 42px 28px 34px;
        }

        .success-icon {
            width: 88px;
            height: 88px;
            margin: 0 auto 22px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(45, 190, 160, 0.14);
        }

        .success-icon svg {
            width: 46px;
            height: 46px;
            stroke: #2dbea0;
        }

        .success-modal h3 {
            font-family: "Lalezar", sans-serif;
            font-size: 2rem;
        }

        .success-modal p {
            color: #6c757d;
            line-height: 1.9;
        }

        .form-control,
        .form-select {
            min-height: 52px;
            border-radius: 12px;
        }

        .form-control:focus,
        .form-select:focus {
            box-shadow: 0 0 0 0.2rem rgba(45, 190, 160, 0.15);
        }

        .submit-btn {
            min-height: 52px;
            border-radius: 12px;
        }

        .submit-btn:disabled {
            opacity: 0.75;
            cursor: not-allowed;
        }